import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
String[] strs = str.split(" ");
int max=0;
for (int i = 0; i < strs.length-1; i++) {
if (Integer.parseInt(strs[i]) > Integer.parseInt(strs[i+1])){
max = Integer.parseInt(strs[i]);
strs[i+1]=strs[i]; // 不考虑原数组,直接覆盖,解决30 20 10
}else {
max = Integer.parseInt(strs[i+1]);
}
}
System.out.println(max);
}
}
0.0分
0 人评分
C二级辅导-统计字符 (C语言代码)浏览:577 |
【数组的距离】 (C语言代码)浏览:787 |
分糖果 (C++代码)浏览:1537 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:611 |
C语言训练-大、小写问题 (C语言代码)浏览:792 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
C语言考试练习题_一元二次方程 (C语言代码)浏览:606 |
C语言考试练习题_保留字母 (C语言代码)浏览:743 |
Tom数 (C语言代码)浏览:581 |
单词个数统计 (C语言代码)浏览:1046 |