#include<stdio.h>
main()
{
int i=0;
for(i; i<5; i++)
printf("%d ",i); /*输出一个数字和三个空格符*/
printf("\n");
}