运行超时哎
#include<stdio.h>int main(){
while (1>0)
{
printf("哈");
}
return 0;
}
2019-11-09 19:49
2019-11-09 19:52
2019-11-09 20:21
2019-11-09 21:22
2019-11-11 17:11
程序代码:#include<stdio.h>
int main()
{
int a=5;
while (a>0)
{
printf("哈");
a=a-1;
}
return 0;
}
2019-11-11 17:41
2019-11-11 18:15