|
本帖最后由 chenyizhong 于 2021-4-13 22:38 編輯
#include <stdio.h>
int main()
{
printf("for 5 times *:\n");
unsigned int i;
for(i=0;i<5;i++)
{
printf("*\n");
}
printf("while 5 times *:\n");
i=0;
while(i<5)
{
printf("*\n");
++i;
}
printf("do while 5 times *:\n");
i=0;
do
{
printf("*\n");
++i;
}while(i<5);
return 0;
}
//總結(jié):循環(huán)很好用,代碼非常少
|
|