Posts in 2024
C++ if else statement
Saturday, June 22, 2024 in C++
Categories:
less than a minute
In this article, you can examine the use of C++ if else statement. #include <iostream> using namespace std; int main() { /* if else statement */ int a; cout << "Enter a positive integer number: "; cin >> a; if (a < 20) { …