码迷,mamicode.com
首页 > 编程语言 > 详细

C语言 while

时间:2020-02-27 17:40:43      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:http   循环   img   else   案例   warnings   nbsp   col   show   

C语言 while

while 语句

流程图

技术图片

 

案例

技术图片
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>

int main(void)
{
    // 格式:while (表达式){}
    // 循环:每次循环将变量i加1直到10停止
    int i = 0;
    while (i < 10)
    {
        printf("%d\n", i);
        i++;
    }
    return 0;
}
while 使用案例
技术图片
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>

// 敲7程序
int main(void)
{
    int i = 1;
    while (i <= 100)
    {
        if (i % 7 == 0 || i % 10 == 7 || i / 10 == 7)
        {
            printf("敲桌子\n", i);
        }
        else
        {
            printf("%d\n", i);
        }
        i++;
    }
    return 0;
}
while 使用案例:敲七

do…while 语句

流程图

技术图片

dowhile 与 while 区别

int i = 0;

// dowhile会先执行语句在判断表达式
    do 
    {
        printf("%d\n", i);
        i++;
    } while (i < 10);


// while会先判断表达式在执行语句
    while (i)
    {
        printf("%d\n", i);
        i++;
    }

案例

技术图片
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>

int main(void)
{
    int i = 0;

    // do{} while (表达式);
    // 限制性语句、在判断表达式
    do 
    {
        printf("%d\n", i);
        i++;
    } while (i < 10);

    return 0;
}
while..do 使用案例

 

C语言 while

标签:http   循环   img   else   案例   warnings   nbsp   col   show   

原文地址:https://www.cnblogs.com/xiangsikai/p/12373177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!