Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int a;
  8.     int b;
  9.     int c;
  10.     cin>>a;
  11.     cin>>b;
  12.     cin>>c;
  13.         if(c == 8){
  14.             cout<<"spune toate notele";
  15.         }else{
  16.             if(c < 8){
  17.                 cout<<"spune a si b";
  18.             }
  19.         }
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement