用c++输出100以内的所有整数

如题所述

第1个回答  2019-08-03
#include<stdio.h>
void main()
{
int i;
for(i=1;i<101;i++)
printf("%d",i);
}本回答被网友采纳
相似回答