Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class OperadorCondicional
- {
- public static int Maximo (int numero1, int numero2)
- {
- return (numero1 > numero2) ? numero1 : numero2;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement