本文主要是介绍c语言之模拟时钟秒表,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include<stdio.h>
struct clock
{int minute;int hour;int second;
};
typedef struct clock demo;
demo b;
void display()//显示
{printf("%d:%d:%d\r",b.hour,b.minute,b.second);
}
void update()//时间的更新
{if(b.second==60){b.minute++;b.second=0;}if(b.minute==60){b.hour++;b.second=0;} if(b.hour==24){b.second++;b.hour=0;}
}
void delay()//模拟时钟的延迟
{int j;for(j=0;j<100000000;j++){}b.second++;
}
int main(int i)
{for(i=0;i<10000000;i++){display();update();delay();}
}
这篇关于c语言之模拟时钟秒表的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!