You are viewing a single comment's thread. Return to all comments →
Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int arr[]= new int[n]; for(int i=0;i
int sum=0; for(int j=i;j<n;j++){ sum+=arr[j]; if(sum<0){ count++; } } } System.out.println(count);
Seems like cookies are disabled on this browser, please enable them to open this website
Java Subarray
You are viewing a single comment's thread. Return to all comments →
Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int arr[]= new int[n]; for(int i=0;i