|
--;
여기 고급.. C++사용자들만 오는곳인가봐요--;;;;;;
제 수준은ㅇㅅㅇ;
#include <iostream.h>
#include <stdlib.h>
int main()
{
int worktime,
counter;
cout << " start ";
cin >> worktime;
counter = 1;
while ( counter <= 5 ) {
cout << " Enter the time ";
cin >> worktime;
counter = counter + 1;
if ( worktime == 8 )
cout << " nomal day ";
else
if ( worktime >= 8 )
cout << " over day ";
if ( worktime <= 8 )
cout << " under day ";
}
system("PAUSE");
return 0;
}
이런식의 작성 수준이에요--;
|