Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created March 5, 2017 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save folivetti/0b9ddb75f26817a0b4703de3419fb6ce to your computer and use it in GitHub Desktop.
Save folivetti/0b9ddb75f26817a0b4703de3419fb6ce to your computer and use it in GitHub Desktop.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int x, y, z;
Scanner leitor = new Scanner(System.in);
x = leitor.nextInt();
y = leitor.nextInt();
z = leitor.nextInt();
if(x >= y && x >= z) {
System.out.println(x);
} else if (y > x && y > z) {
System.out.println(y);
} else {
System.out.println(z);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment