#include <stdio.h>
int main()
{
/*int number = 0;
for (; number <50; ) {
printf("做第%d次俯卧撑\n",number);
number++;
}*/
/*for (int number = 0; number <50; number++)
{
printf("做第%d次俯卧撑\n", number);
}*/
/*int count = 0;
for (;count<50;)
{
printf("做第%d次俯卧撑\n",count);
count++;
}*/
/* for ( int count = 0;count<50;)
{
printf("做第%d次俯卧撑\n",count);
count++;
}
*/
/* for ( int count = 0;count<50;count++)
{
printf("做第%d次俯卧撑\n",count);
}
*/
int count = 0;
while (count <50)
{
printf ("做第%d次俯卧撑\n",count);
count++;
}
return 0;
} |
|