91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
康马县| 河津市| 新邵县| 巴彦淖尔市| 喀什市| 辽阳市| 阳城县| 湾仔区| 恩施市| 巴彦淖尔市| 锦屏县| 荆州市| 庄浪县| 宁海县| 富民县| 湖州市| 安陆市| 千阳县| 杭锦后旗| 腾冲县| 友谊县| 新宁县| 博罗县| 格尔木市| 林西县| 稷山县| 阳高县| 兴国县| 灌云县| 开原市| 高邮市| 嫩江县| 安泽县| 紫阳县| 增城市| 邳州市| 迭部县| 扬州市| 香格里拉县| 红原县| 博湖县|