C++ if else kullanımı

Estimated read time 1 min read

Bu yazımızda, C++ if else kullanımını inceleyebilirsiniz.

#include <iostream>

using namespace std;

int main() {
/* if else statement */
    int a;
    cout << "Enter a positive integer number: ";
    cin >> a;
    if (a < 20) {
        cout << "a is less than 20\n";
    } else {
        cout << "a is not less than 20\n";
    }
    return 0;
}
İbrahim Korucuoğlu

Yazar, bilişim ve teknoloji alanında derlediği faydalı içerikleri bu blogta paylaşmaktadır.

+ There are no comments

Add yours