2分钟倒计时
#include <stdio.h>int main()
{
printf("2:00");
sleep(1000);
system("cls");
printf("1:59");
sleep(1000);
system("cls");
int i=58;
while(i>=0){
printf("1:%d",i);
sleep(1000);
system("cls");
i--;
};
while(i>=0){
printf("1:0%d",i);
sleep(1000);
system("cls");
i--;
};
printf("0:59");
sleep(1000);
system("cls");
int j=58;
while(j>9){
printf("0:%d",j);
sleep(1000);
system("cls");
j--;
};
while(j>=0){
printf("0:0%d",j);
sleep(1000);
system("cls");
j--;
};
sleep(5000);
return 0;
} 改进版
#include <stdio.h>
int main()
{
printf("2:00");
sleep(1000);
system("cls");
printf("1:59");
sleep(1000);
system("cls");
int i=58;
while(i>=0){
printf("1:%.2d",i);
sleep(1000);
system("cls");
i--;
};
printf("0:59");
sleep(1000);
system("cls");
int j=58;
while(j>=0){
printf("0:%.2d",j);
sleep(1000);
system("cls");
j--;
};
sleep(5000);
return 0;
} 再改进版
#include <stdio.h>
int main()
{
printf("2:00");
sleep(1000);
system("cls");
int i=59;
while(i>=0){
printf("1:%.2d",i);
sleep(1000);
system("cls");
i--;
};
int j=59;
while(j>=0){
printf("0:%.2d",j);
sleep(1000);
system("cls");
j--;
};
sleep(5000);
return 0;
} 主持楼主!加油! 计时开始! zhuzhuwqa 发表于 2013-2-18 17:15 static/image/common/back.gif
改进版
#include
int main()
可以用来当作单片机的代码吗?
页:
[1]