15 lines
277 B
C++
15 lines
277 B
C++
#include "Weather.h"
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
cout<<"Program Start!"<<endl;
|
|
|
|
Weather w=Weather::GetWeather("%E5%A4%A9%E6%B4%A5");
|
|
cout<<"Weather Ready Status: "<<w.isReady()<<endl;
|
|
|
|
cout<<"Program Finished."<<endl;
|
|
return 0;
|
|
}
|