IT

오늘이 수요일이면 메시지박스 출력하기

나의지식 2016. 4. 22. 22:22

#include <windows.h>

#include <time.h>


using namespace std;


int WINAPI WinMain(HINSTANCE inst,HINSTANCE prev,LPSTR cmd,int show) {


time_t timer;

struct tm *t;

timer = time(NULL); 

t = localtime(&timer); 


if(t->tm_wday==3) {

MessageBox(NULL,"오늘은 수요일이군요.","",MB_OK);

}


return 0;

}

반응형