解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class C1002 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
while (scanner.hasNext()) {
int a = scanner.nextInt();
int b = scanner.nextInt();
int c = scanner.nextInt();
int result = max(a, b, c);
System.out.println(result);
}
}
public static int max(int a, int b, int c) {
if(a > b && a > c){
return a;
}else if(b > c && b > a){
return b;
}else{
return c;
}
}
}
0.0分
0 人评分
C语言考试练习题_排列 (C语言代码)浏览:1373 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:512 |
剪刀石头布 (C语言代码)浏览:802 |
1642题解浏览:784 |
1012题解浏览:938 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
模拟计算器 (C语言代码)浏览:2366 |
【计算球体积】 (C语言代码)浏览:1619 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:2208 |
字符删除 (C语言代码)浏览:767 |