Advertisement
dusanrs

test.java

Dec 24th, 2021
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.11 KB | None | 0 0
  1. package pernica;
  2.  
  3. public class Test {
  4.  
  5.     public static void main(String[] args) {
  6.         // TODO Auto-generated method stub
  7.  
  8.         Bojica b=new Bojica("1",100,"Crvena","Drvena");
  9.         Bojica b1=new Bojica("2",200,"Plava","Drvena");
  10.         Bojica b2=new Bojica("3",300,"Zelen","Drvena");
  11.         Bojica b3=new Bojica("4",400,"Roza","Drvena");
  12.         Bojica b5=new Bojica("5",400,"Roza","Drvena");
  13.         Bojica b6=new Bojica("6",400,"Roza","Drvena");
  14.         Bojica b4=new Bojica(b);
  15.         System.out.println("Cena b");
  16.         System.out.println(b.getCena());
  17.         System.out.println("Serijski broj b");
  18.         System.out.println(b.getSerijski_broj());
  19.        
  20.         b.akcijskaCena(10);
  21.         b1.akcijskaCena(10);
  22.         b2.akcijskaCena(10);
  23.         b3.akcijskaCena(10);
  24.         b4.akcijskaCena(10);
  25.        
  26.         System.out.println(b);
  27.         System.out.println(b1);
  28.         System.out.println(b2);
  29.         System.out.println(b3);
  30.         System.out.println(b4);
  31.  
  32.         Pernica p=new Pernica();
  33.         p.dodaj(b4);
  34.         p.dodaj(b1);
  35.         p.dodaj(b3);
  36.         p.dodaj(b2);
  37.         p.dodaj(b5);
  38.         p.dodaj(b6);
  39.        
  40.         System.out.println("Broj boijca sa cenom vecom od 150"+" "+p.prebroj(150));
  41.         System.out.println(p);
  42.        
  43.        
  44.        
  45.        
  46.     }
  47.  
  48. }
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement