从0开始不断递增打印

#include
int main()
{
	int i = 0;
	while (1)
	{
		printf("%d", i);
		i++;
	}
	printf("\ni=%d", i);
	return 0;
}

你可能感兴趣的:(算法,数据结构,c++,c#,开发语言)