Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6.     int firstNumber;
  7.     int secondNumber;
  8.  
  9.     cout << "enter the first number: " << endl;
  10.     cin >> firstNumber;
  11.     cout << "enter the second number: " << endl;
  12.     cin >> secondNumber;
  13.  
  14.     bool omar;
  15.     omar = (firstNumber == secondNumber);
  16.  
  17.     if (omar) {
  18.         cout << "you entered the same number";
  19.     }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement