內容 :
文文和兩個同學最近喜歡在 ZeroJudge 上解題。有一天他們看到了孔子說的:「三人行必有我師焉。」就吵了起來,因為他們每個人都認為自己是三個人之中的「老師」。後來他們決定要比比看誰在 ZeroJudge 上的 AC 題數最多。
輸入說明 :
輸入只有一行,含有三個由空白所隔開的非負整數。
輸出說明 :
輸出這三個整數中最大的那一個。
範例輸入 :
35 26 48
範例輸出:
48
提示 :
出處:
import java.util.Scanner;
public class d065 {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
while(sc.hasNext()){
int n=sc.nextInt();
int m=sc.nextInt();
int z=sc.nextInt();
int max=0;
if(n>max)
max=n;
if(m>max)
max=m;
if(z>max)
max=z;
System.out.println(max);
}
}
}
沒有留言:
張貼留言