個人第16個代碼

學習do……while循環ide

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

相關文章
相關標籤/搜索