Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6.  
  7. package varastojarjestelma;
  8. import java.util.Scanner;
  9.  
  10.  
  11.  
  12.  
  13. /**
  14. *
  15. *
  16. */
  17. public class Varastojarjestelma {
  18.  
  19.  
  20. public static Tuote testiTuote = new Tuote("123-456", "appelsiinit");
  21. static Lajitteluhallinta lajittelu = new Lajitteluhallinta();
  22. static Scanner lukija = new Scanner(System.in);
  23.  
  24. //public static Paneeli paneeli = new Paneeli();
  25.  
  26.  
  27. public static void main(String[] args) {
  28. int valinta = 0;
  29. String testeri = testiTuote.getAvain();
  30. System.out.println(testeri);
  31.  
  32. /*vitun grafiikat
  33.  
  34. Grafiikka grafiikka = new Grafiikka();
  35. grafiikka.asetaNakyvyys();
  36. */
  37. do{
  38. System.out.println("vaihtoehdot... mikä on valintasi?...");
  39. }while(valinta!=0);
  40.  
  41.  
  42. System.out.println(lajittelu.vapaatVarastopaikat());
  43.  
  44.  
  45.  
  46.  
  47. }
  48.  
  49.  
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement