#include<iostream>
#include<windows.h>
using namespace std;
int main(){
int h = 23; // Hour time you
int m = 58; // minute time you
int s = 0; // Second time you
for(s;s<61;s++)
{
cout<<"\n \n "<<h<<" : "<<m<<" : "<<s;
if(s==61){
s=s-60;
system("cls");
m=m+1;
if(m==61){
h=h+1;
if(h==24){
h=h-24;
m=m-60;
}
}
}
Sleep(1000); //Speed = 1000/1s 500/0.5s
}
}
ควรปรับแต่งตกไหนเพิ่มฮ่ะ เหลือ ควรตัดอะไรออกดีครับ ช่วยแนะนำด้วย
หาคนช่วยแนะนำ code นาฬิกา c+
#include<windows.h>
using namespace std;
int main(){
int h = 23; // Hour time you
int m = 58; // minute time you
int s = 0; // Second time you
for(s;s<61;s++)
{
cout<<"\n \n "<<h<<" : "<<m<<" : "<<s;
if(s==61){
s=s-60;
system("cls");
m=m+1;
if(m==61){
h=h+1;
if(h==24){
h=h-24;
m=m-60;
}
}
}
Sleep(1000); //Speed = 1000/1s 500/0.5s
}
}
ควรปรับแต่งตกไหนเพิ่มฮ่ะ เหลือ ควรตัดอะไรออกดีครับ ช่วยแนะนำด้วย