解题思路:
注意事项:
参考代码:import java.util.Scanner;
/**************题目 1088: A+B for Input-Output Practice (IV)**********************/
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t=0;
int[] array = new int[100];
boolean tepm = true;
while (tepm) {
int n = sc.nextInt();
if(n != 0) {
int sum = 0;
for (int i = 0; i < n; i++){
int a = sc.nextInt();
sum+=a;
}
array[t++]=sum;
}else{
tepm = false;
}
}
for (int i = 0; i < t ; i++) {
System.out.println(array[i]);
}
}
}
0.0分
0 人评分
Hello, world! (C++代码)浏览:1778 |
关于C语言变量位置的问题浏览:294 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:537 |
DNA (C语言代码)浏览:798 |
简单的a+b (C语言代码)浏览:857 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:712 |
这是我的第一篇文章浏览:265 |
钟神赛车 (C++代码)(标准题解)(与田忌赛马类似)浏览:1919 |
多输入输出练习1 (C语言代码)浏览:1470 |
ACM菜鸟大牛和教主的区别浏览:1224 |