• if语句的选择结构


    #include<iostream>
    using namespace std;
    int main()
    {
        int grad;
        cout<<"请输入你要查询的成绩:"<<endl;
        cin>>grad;
        if(grad>100)
            cout<<"您输入的数据错误";
        else if(grad>=90&&grad<=100)
            cout<<"A";
        else if(grad>=80&&grad<90)
            cout<<"B";
        else if(grad>=70&&grad<80)
            cout<<"C";
        else if(grad>=60&&grad<70)
            cout<<"D";
        else
            cout<<"E";
    }

    ————————————————————————————————————

    嵌套的语句——查询成绩

    #include<iostream>
    using namespace std;
    int main()
    {
        int grad;
        cout<<"请输入你要查询的成绩:"<<endl;
        cin>>grad;
        if(grad>100||grad<0)
            cout<<"您输入的数据错误";

        else if(grad<60)
            cout<<"E";
        else
        {
            if(grad<70)
                cout<<"D";
            else
            {
                if(grad<80)
                    cout<<"C";
                else
                {
                    if(grad<90)
                        cout<<"B";
                    else
                        cout<<"A";
                }
            }
        }

    }

  • 相关阅读:
    ptunnel-简易使用
    socat-简易使用
    ncat-相关参数用法
    通过iodine简单实现dns隧道技术
    HTB-靶机-Safe
    HTB-靶机-Rope
    【mysql子查询&组合查询 05】
    【mysql 库表操作 07】
    【mysql插入&修改&删除 06】
    【mysql 连接查询 04】
  • 原文地址:https://www.cnblogs.com/ywj2013/p/3137299.html
Copyright © 2020-2023  润新知