解题思路:
注意事项:
参考代码:import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc=new Scanner(System.in);
long n=sc.nextLong();
long a=sc.nextLong();
long x=a,y=a;
for(long i=1;i<n;i++) {
a=sc.nextLong();
if(a>=x) {
x=a;
}
if(a<=y) {
y=a;
}
}
System.out.printf("%d %d", x, y);
}
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:604 |
简单的a+b (C语言代码)浏览:594 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
【明明的随机数】 (C++代码)浏览:834 |
不容易系列 (C语言代码)浏览:702 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
A+B for Input-Output Practice (V) (C语言代码)浏览:497 |
前10名 (C语言代码)浏览:773 |
复数求和 (C语言代码)浏览:994 |
C语言训练-自守数问题 (C语言代码)浏览:798 |