c语言中循环控制语句(do语句)

  

 

1、

#include <stdio.h>

int main(void)
{
    int i, j;
    
    do
    {
        puts("please input the i value:");
        printf("i = "); scanf("%d", &i);
        if (i % 2)
            puts("odd");
        else
            puts("even");
        puts("please input the j value, 0: continue; other: quit.");
        printf("j = "); scanf("%d", &j);
    } 
    while (j == 0);           ## 当 while语句不为0时,会继续循环,即j等于0时会继续循环; 当while语句为0是,即j不等于0时会跳出循环。
    return 0;
} 

 

 

相关文章