Advertisement
Guest User

Untitled

a guest
Dec 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     double a, b;
  8.     cout << "podaj liczbe całkowita "<< endl;
  9.     cin >> a;
  10.     if(a==10) cout << "podana liczba jest rowna 10" << endl;
  11.     else cout << "podana liczba nie jest rowna 10" << endl;
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement