其他分享
首页 > 其他分享> > c语言中的do while循环语句

c语言中的do while循环语句

作者:互联网

 

001、

#include <stdio.h>

int main(void)
{
    int i;
    
    do
    {
        int random;
        
        printf("random = "); scanf("%d", &random);
        if (random % 2)
        {
            puts("odd");
        }
        else
        {
            puts("even");
        }
        
        printf("retry? 0:yes; !0:no; i = "); scanf("%d", &i);
    }
    while( i == 0);     ## 循环控制语句
    
    return 0;
}

 

标签:语句,do,puts,int,scanf,random,while,printf
来源: https://www.cnblogs.com/liujiaxin2018/p/16578415.html