解题思路:
注意事项:
参考代码:
import java.util.Scanner;
/**************题目 1089: A+B for Input-Output Practice (V)**********************/
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt(); // n组数据
int[] array = new int[n];
for (int i = 0; i < n ; i++) {
int sum = 0;
int x = sc.nextInt(); // 每组数据多少个
for (int j = 0; j < x ; j++) {
int a = sc.nextInt();
sum+=a;
}
array[i] = sum;
}
for (int i = 0; i < n; i++) {
System.out.println(array[i]);
}
}
}
0.0分
0 人评分
这可能是一个假的冒泡法浏览:1071 |
Pascal三角 (C语言代码)格式错误浏览:551 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:790 |
【偶数求和】 (C语言代码)浏览:674 |
C语言训练-大、小写问题 (C语言代码)浏览:649 |
三角形 (C++代码)递推浏览:825 |
WU-C语言程序设计教程(第三版)课后习题11.12 (C++代码)(想学链表的小伙伴可以看看)浏览:964 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:646 |
A+B for Input-Output Practice (C语言代码)浏览:505 |
图形输出 (C语言代码)浏览:1422 |