标签:print printf turn std its while sleep windows int
#include <bits/stdc++.h>
#include<windows.h>
int main()
{
int a;
a=10;
while(a>=0)
{
system("cls");
printf("%d",a);
Sleep(1000);
a=a-1;
}
return 0;
}
标签:print printf turn std its while sleep windows int
原文地址:https://www.cnblogs.com/Cathycat/p/11197946.html