美文网首页
12.选择结构

12.选择结构

作者: lxr_ | 来源:发表于2020-12-13 12:32 被阅读0次

    #include<iostream>

    using namespace std;

    int main()

    {

        //if  else与switch  case 语句

        //switch:判断条件只能是整形或者字符型不能是一个区间,结构清晰,执行效率高

        int ch = 0;

        cout << "请输入ch" << endl;

        cin >> ch;

        switch (ch)

        {

            case 0:cout << "xian" << endl; break;

            case 1:cout << "si" << endl; break;

            default:cout << "fan" << endl; break;

        }

        system("pause");

        return 0;

    }

    相关文章

      网友评论

          本文标题:12.选择结构

          本文链接:https://www.haomeiwen.com/subject/ugjawktx.html