第21行显示;预期

时间:2018-08-17 11:12:34

标签: java string compiler-errors

第一行包含一个表示数组长度的整数p。第二行包含用空格分隔的整数,这些整数描述数组中的每个元素。第三行打印一个整数,指示负数组的数量。

package asgn3;

import java.util.*;

public class Asgn3 {

    public static void main(String[] args) {

        int count = 0, result = 0;
        Scanner in = new Scanner(System.in);
        System.out.println("Enter the array ");
        String s = in.nextLine();
        int j = 0;
        String[] s1 = s.split(" ");
        int a[] = new int[s1.length];

        for(String s2:s1) {
            a[j] = Integer.parseInt(s2));
            j++;
        }

        for (int i = 0; i < a.length; i++) {
            for ( j = i; j < a.length; j ++) {
                for (int k = i; k <= j; k++) {
                    result += a[k];
                }

                if(result < 0)
                    count ++;
            }
            System.out.println("no. of negatve arrays is "+count);
        }
    }
}

2 个答案:

答案 0 :(得分:2)

问题是使用了多余的括号。更改

a[j]=Integer.parseInt(s2));

使用

a[j]=Integer.parseInt(s2);

答案 1 :(得分:1)

从行尾删除多余的括号

a[j] = Integer.parseInt(s2);