в IDEA код працює, переніс в додаток, незараховує операцію сумування.
package com.javarush.task.pro.task04.task0403;
import java.util.Scanner;
/*
Суммирование
*/
public class Solution {
public static void main(String[] args) {
//напишите тут ваш код
int sumInt = 0;
Scanner scanner = new Scanner (System.in);
System.out.println ("Input new value");
while (scanner.hasNextInt()){
int x = scanner.nextInt();
sumInt = sumInt + x;}
while (scanner.hasNextLine()){
String s = scanner.nextLine();
if (s.equals("ENTER")) {
System.out.println(sumInt);}
}
}
}
