烂代码~_~||
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int b = 0;
int c = 0;
int x = 1; //计数器,由于nextLine()执行的是当前行,在首次输入循环次数后不会换行,而循环到第二次以后又不必
int n = sc.nextInt(); //再次换行,所以设置1的计数器,在首次进入for循环时,执行一次nextLine,避免空字符串。
for (int k = 0; k < n; k++){
if (sc.hasNext()) {
while(x<2) {
sc.nextLine();
x++;
}
String[] s = sc.nextLine().split(" ");
int a = Integer.parseInt(s[0]);
if (a == 0) {
break;
}
for (int i = 1; i < a + 1; i++) {
c = Integer.parseInt(s[i]);
b += c;
}
System.out.println(b);
b = 0;
}
}
}
}