Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(){
  6. int a,b,c;
  7. cout<<"inserisci tre valori"<<endl;
  8. cin>>a;
  9. cin>>b;
  10. cin>>c;
  11.     if (a>b && a>c)
  12.        cout<<"Il Maggiore e'"<<a;
  13.     else
  14.         if (b>c)
  15.         cout<<"il maggiore e'"<<b;
  16.    else
  17.        cout<<"il maggiore e'"<<c;
  18. return (0);
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement