/****************************************************************************** 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 Vaja12{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Vnesi stevilo: "); int a = sc.nextInt(); if (a >= 0) { System.out.println("Abs vrednost stevila je: "+a); } else { System.out.println("Abs vrednost stevila je :"+(a*(-1))); } } }