#include <stdio.h>
int main()
{
printf("\n----------While----------\n");
int i=0;
while(i<5)
{
printf("%d",i);
i++;
}
printf("\n----------Do While----------\n");
i=0;
do
{
printf("%d",i);
i++;
}while(i<5);
printf("\n----------Do While Break----------\n");
i=0;
do
{
printf("%d",i);
if(i>=4)
break;
i++;
}while(1);
printf("\n");
}
沒有留言:
張貼留言