/****************************************************************************** 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 Vaja15{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Vnesi stevilo: "); int a = sc.nextInt(); System.out.print("Vnesi drugo stevilo: "); int b = sc.nextInt(); System.out.print("Vnesi tretje stevilo: "); int c = sc.nextInt(); if (a > b && a > c){ System.out.println("Največje število med števili "+a+", "+b+", "+c+" je "+a); } else if (b > a && b > c) { System.out.println("Največje število med števili "+a+", "+b+", "+c+" je "+b); } else if (c > a && c > b) { System.out.println("Največje število med števili "+a+", "+b+", "+c+" je "+c); } } }