-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
45 lines (45 loc) · 727 Bytes
/
main.cpp
File metadata and controls
45 lines (45 loc) · 727 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
44
45
#include<iostream>
#include<windows.h>
using namespace std;
int main()
{
int h,m,s,a,err;
err=a=0;
while(err==0)
{
cout<<"DIGITAL CLOCK"<<endl;
cout<<"Enter Hour : ";
cin>>h;
cout<<"Enter Minutes : ";
cin>>m;
cout<<"Enter Seconds : ";
cin>>s;
cout<<"NOW TIME IS"<<endl;
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>24)
{
h=0;
}
}
return 0;
}