Develop
2003.04.23 09:50
[c++] p.58 연습문제 2번
조회 수 16707 댓글 0
#include<iostream.h>
#include<time.h>
#include<string.h>
class stopwatch{
clock_t c_start, c_end, st, k;
public :
stopwatch();
~stopwatch();
start();
stop(int i);
show();
};
stopwatch::stopwatch(){
}
stopwatch::~stopwatch(){
c_end = clock();
cout << "Bye~ : " << (int)( (c_end - c_start)/CLK_TCK ) << " secn";
}
stopwatch::show(){
c_end = clock();
cout << "Show time : " << (int)( (c_end - c_start)/CLK_TCK ) << " secn";
}
stopwatch::start(){
c_start = clock();
}
stopwatch::stop(int i){
if(i==0){
k = clock();
}else if(i==1){
st = clock();
st = st - k;
c_start = c_start + st;
}
}
int main(){
char com[10];
stopwatch ob;
cout << "Command: start, stop, exit n";
while(1){
cin >> com;
if(!strcmp(com, "start")) ob.start();
if(!strcmp(com, "stop")){
ob.stop(0);
cin >> com;
ob.stop(1);
}if(!strcmp(com, "show")) ob.show();
if(!strcmp(com, "exit")) return 0;
}
}
-
[linux] 웹로그분석기(webalizer) 설치 & 팁
-
[linux] 메일서버 세팅정보(sendmail)
-
[linux] APM(apache, php, mysql) + gd 설치순서..
-
[linux] 쉘 환경변수 PS1(프롬프트)
-
[mysql] 쓰레드가 계속 쌓이기 시작하고 사라지지 않을때..
-
[linux] 콘솔/Xwindow 에서 PC스피커 소리 없애기
-
[c] 프로그래밍 ppt, 스킬업 (비트 수업자료)
-
[c++] p.118 확인학습 5번
-
[c++] p.58 연습문제 2번
-
[c++] p.47 연습문제 3번
-
[opengl] 컴퓨터 그래픽스 강의 자료(수업자료)
-
[c] 그래픽스 자료(OpenGL 라이브러리) 샘플 소스