C++ iç içe if kullanımı

Bu yazımızda C++ iç içe geçmiş if ifadesini gösteren bir örnek paylaşıyoruz.

Bu yazımızda C++ iç içe geçmiş if ifadesini gösteren bir örnek paylaşıyoruz.

#include <iostream>

using namespace std;

int main() {
/* nested if else statement */
    int a;
    cout << "Enter a positive integer number: ";
    cin >> a;
    if (a < 20) {
        cout << "a is less than 20 ";
        if (a < 10)
            cout << "a is less than 10 ";
        else
            cout << "a is not less than 10 ";
    } else {
        if (a == 20) {
            cout << "a is equal to 20 ";
        } else
            cout << "a is greater than 20 ";
    }
    return 0;
}
Son düzenleme 17.01.2025: new translations (f32b526)