个人第16个代码

学习do……while循环ide

int main()
{
int i = 1;
do
{
printf("%d\n", i);
i++;
} while (i <= 10);
return 0;
}//学习do……while 循环学习

相关文章
相关标签/搜索