Advertisement
chevengur

Вводный курс: основы C++ | Урок 2: Условный оператор if 1/3

Aug 17th, 2023 (edited)
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     int id_dog;
  7.     cin >> id_dog;
  8.     if(id_dog == 11235813){
  9.         cout << "Fibo is found";
  10.     }
  11.     else{
  12.         cout << "This is not Fibo";
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement