Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. public interface restoran
  2. {
  3. public static final int jelo1 = 15;
  4. public static final int jelo2 = 30;
  5. public static final String Restoran = "ime" // nisam siguran, nemoguće dešifrirati
  6. }
  7.  
  8. public class Kupci implements restoran
  9. {
  10. public static void main(String[] args)
  11. {
  12. double cijena = 40.00;
  13. System.out.println("Dobro dosli u " + restoran);
  14. System.out.println("Narucili smo"+jelo1 +"i" +jelo2+"cijena je" + cijena+ "kn");
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement