Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

10학번 c++ 프로젝트/소스

From ZeroWiki
Revision as of 08:32, 28 August 2010 by imported>rlaace423

소스 파일

main.cpp

말그대로 메인입니다..

#include <windows.h>
#include "now_time.h"
#include "alarmsetting.h"
#include "cho.h"

void main()	{

	while(1)	{
		now_time a;
		a.print_now_time();
		system("cls");
		cho b;
		b.setwatch();
		system("cls");
		alarmsetting c;
		c.alm_set();
	}
}