题解 | #兔子的序列#
兔子的序列
https://www.nowcoder.com/practice/55fc2ebad3fd444bbb1754ba1b259762
import java.util.Scanner;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
// 注意 hasNext 和 hasNextLine 的区别
while (in.hasNextInt()) { // 注意 while 处理多个 case
int a = in.nextLine().charAt(0);
String s = in.nextLine();
String[] arr = s.split(" ");
int max = 0;
for(int i = 0;i < arr.length;i++){
int b = Integer.valueOf(arr[i]);
if(Math.pow((int)Math.sqrt(b),2) != b){
if(max < b){
max = b;
}
}
}
System.out.println(max);
}
}
}