//宏定義:__date__、__time__、__file__、__line__,表示在代碼編譯時的信息。
string datecode = __date__; //文件編譯時的日期。
string timecode = __time__; //文件編譯時的時間。
cout<<"creat the software of date:"<<datecode<<endl;
cout<<"creat the software of time:"<<timecode<<endl;