More actions
imported>rlaace423 No edit summary |
imported>rlaace423 No edit summary |
||
| Line 2: | Line 2: | ||
== main.cpp == | == 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(); | |||
} | |||
} | |||
Revision as of 08:32, 28 August 2010
소스 파일
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();
}
}