/****************************************************************************** Online Java Compiler. Code, Compile, Run and Debug java program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = 1; int vs = 0; int max = 0; int maxZap = 0; int zap = 0; while (a != 0){ System.out.print("Vnesi st: "); a = sc.nextInt(); vs += a; zap++; if (a > max){ max = a; maxZap = zap; } } System.out.println("Vsota = "+vs); System.out.println("Max vneseno št = "+max+" Vneseno na "+maxZap+" mestu."); } }