houninym
0
Q:

if else program in c ++

// Program to check whether an integer is positive or negative
// This program considers 0 as a positive number

#include <iostream>
using namespace std;

int main() {
     int number;

    cout << "Enter an integer: ";
    cin >> number;
    if (number >= 0) {
        cout << "You entered a positive integer: " << number << endl;
    }
    else {
        cout << "You entered a negative integer: " << number << endl;
    }
    cout << "This line is always printed.";
    return 0;
}
0


  if (condition) {
  // block of code to be executed if the 
  condition is true
} else { 
  // block of code to be executed 
  if the condition is false
}


  
2
if (condition) {
    // block of code if condition is true
}
else {
    // block of code if condition is false
}
0

Tags

New to Communities?

Join the community