-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.cpp
More file actions
43 lines (43 loc) · 796 Bytes
/
clock.cpp
File metadata and controls
43 lines (43 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include<iostream>
#include<windows.h>
using namespace std;
int main()
{
int h, m, s, a, err;
err=a=0;
while(err==0)
{
cout<<"Enter current hour: "<<endl;
cin>>h;
cout<<"Enter current minute: "<<endl;
cin>>m;
cout<<"Enter current second: "<<endl;
cin>>s;
if(h<24 && m<60 && s<60)
err++;
else
system("cls");
}
while(a==0)
{
system("cls");
cout<<h<<":"<<m<<":"<<s<<endl;
Sleep(1000);
s++;
if(s>59)
{
s=0;
m++;
}
if(m>59)
{
m=0;
h++;
}
if(h>23)
{
h=0;
}
}
return 0;
}