#include<stdio.h>
#include<Windows.h> //=运行速度控制
#include<stdlib.h> // 清屏
int main()
{
int i = 0;
while (i < 9999999999999999999)
{
if (i % 2 != 0)
{
i++;
continue;
}
else
{
printf("%d\n", i);
Sleep(1000);
system("cls");
i++;
}
}
return 0;
}
标签:main,return,int,打印,9999999999999999999,++,依次,include From: https://blog.51cto.com/u_16073189/6239933