Advertisement
Jordimario

FUNZIONE Confronta i due numeri

May 20th, 2018
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. int ConfrontaNumero(int n1,int n2);///servono 2 numeri da confrontare
  2.  
  3.  
  4. ///--------funzione confronta-------//
  5. int ConfrontaNumero(int n1,int n2);///ritorna "1" se è vero e "0" se è falso
  6. {
  7. if(n1==n2)
  8. return 1;
  9. return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement