一道java题目 求告知哪里有错误啊啊啊啊啊

题目描述Yourtaskistocalculatethesumofsomeintegers.输入要求InputcontainsanintegerNinthefirstli... 题目描述
Your task is to calculate the sum of some integers.
输入要求
Input contains an integer N in the first line, and then N lines follow. Each line starts with a integer M, and then M integers follow in the same line.
输出要求
For each group of input integers you should output their sum in one line, and with one line of output for each line in input.
假如输入
2
4 1 2 3 4
5 1 2 3 4 5
应当输出
10
15

这是我的代码

import java.util.Scanner;
public class 输入的数相加 {

public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
for(int i = 0;i < N;i ++){
int M = sc.nextInt();
int [] a = new int[M];
int sum = 0;
for(int j = 0;j < M;j ++){

sum += a[j];
}

System.out.println(sum);

}

}

}
展开
 我来答
很低调2000
2017-03-29 · 超过136用户采纳过TA的回答
知道小有建树答主
回答量:337
采纳率:0%
帮助的人:96.2万
展开全部
JAVA一个类可继承多个接口,但是只能实现一个方法。 所以第3行不会报错,第7行也不会报错。 对于bMethod(),在B中只是定义了一个方法,没有任何实现,D中实现了B中的方法bMethod(),然后E继承了D,那么D中的方法bMethod()会覆盖B中bMethod()方法。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式