#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;

}