中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++分支如何實現條件判斷

c++
小樊
81
2024-11-24 17:49:58
欄目: 編程語言

在C++中,可以使用if-else語句、switch語句或者三元運算符(條件運算符)來實現條件判斷。下面是這三種方法的示例:

  1. if-else語句:
#include <iostream>
using namespace std;

int main() {
    int number = 10;

    if (number > 0) {
        cout << "The number is positive." << endl;
    } else if (number < 0) {
        cout << "The number is negative." << endl;
    } else {
        cout << "The number is zero." << endl;
    }

    return 0;
}
  1. switch語句:
#include <iostream>
using namespace std;

int main() {
    int day = 3;

    switch (day) {
        case 1:
            cout << "Monday" << endl;
            break;
        case 2:
            cout << "Tuesday" << endl;
            break;
        case 3:
            cout << "Wednesday" << endl;
            break;
        case 4:
            cout << "Thursday" << endl;
            break;
        case 5:
            cout << "Friday" << endl;
            break;
        case 6:
            cout << "Saturday" << endl;
            break;
        case 7:
            cout << "Sunday" << endl;
            break;
        default:
            cout << "Invalid day" << endl;
    }

    return 0;
}
  1. 三元運算符(條件運算符):
#include <iostream>
using namespace std;

int main() {
    int number = 10;

    string result = (number > 0) ? "The number is positive." : (number < 0) ? "The number is negative." : "The number is zero.";

    cout << result << endl;

    return 0;
}

以上三種方法都可以實現條件判斷,根據具體需求和場景選擇合適的方法。

0
河源市| 巢湖市| 乐亭县| 石阡县| 原平市| 江西省| 仙居县| 庐江县| 娄烦县| 梅河口市| 临沂市| 嘉鱼县| 郓城县| 临海市| 鄂托克旗| 屏边| 和田市| 吉林省| 小金县| 兴化市| 静宁县| 沛县| 郁南县| 平谷区| 渑池县| 曲靖市| 南涧| 塔河县| 上栗县| 桐城市| 兴安县| 盐津县| 察隅县| 乡城县| 溆浦县| 项城市| 长汀县| 启东市| 奇台县| 曲靖市| 诸暨市|