/* 1. naloga */
public class Izpis_stevil {
public static void main
(String[] args
) { // preberemo prvo stevilo
int stevilo1 =
Integer.
valueOf(niz
).
intValue();
// preberemo drugo stevilo
niz = javax.
swing.
JOptionPane.
showInputDialog("Vpi?i celo stevilo?");
int stevilo2 =
Integer.
valueOf(niz
).
intValue();
// izpisemo prvo stevilo
System.
out.
println("Prvo stevilo je: " + stevilo1
);
// izpisemo drugo stevilo
System.
out.
println("Drugo stevilo je: " + stevilo2
);
}
}