/****************************************************************************** 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 b = 0; while (a != 0){ System.out.print("Vnesi st: "); a = sc.nextInt(); b++; } b--; System.out.println("Vnesel si "+b+" števil breuz nicle."); } }