Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~188 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for sohaib paracha

#include<iostream.h> #include<iostream> #include<iomanip.h> #include<windows.h> void main() { int a,b,c,h,m,s,l=44; cout<<setw(l); cout<<"DIGITAL CLOCK"<<endl; cout<<"\n"; cout<<"Enter time in hours = "; cin>>a; cout<<"Enter time in minutes= "; cin>>b; cout<<"Enter time in seconds= "; cin>>c; start: for(h=a;h<24;h++) { for(m=b;m<60;m++) { for(s=c;s<60;s++) { Sleep(1000); system("CLS"); cout<<h<<":"<<m<<":"<<s<<endl; } c=0; } b=0; } a=0; goto start; …

Member Avatar for Eagletalon
0
188