解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] arr = new int[3];
int max = arr[0];
for(int i=0; i<3; i++) {
arr[i] = sc.nextInt();
}
for(int m = 0; m<3;m++){
if(arr[m]>max){
max = arr[m];
}
}
System.out.println(max);
}
}
0.0分
1 人评分
【偶数求和】 (C语言代码)浏览:588 |
wu-淘淘的名单 (C++代码)浏览:1532 |
校门外的树 (C语言代码)浏览:733 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:624 |
找出最长的字符串来 (C语言代码)浏览:1840 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1288 |
C二级辅导-公约公倍 (C语言代码)浏览:693 |
C语言程序设计教程(第三版)课后习题4.9 (Java代码)浏览:630 |
C语言程序设计教程(第三版)课后习题8.4 (C++代码)浏览:472 |
Manchester-汽水瓶问题浏览:4235 |