Guest User

Untitled

a guest
Apr 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. package lenarski.pplab.lab06;
  2.  
  3. import xxx.pplab.tablice.*;
  4. import xxx.pplab.interfejs.*;
  5.  
  6. public class Glowna06 {
  7. public static void main(String args[]) {
  8. String[] menu = new String[5];
  9. System.out.println("Menu");
  10. menu[0] = "wyswietl wektor";
  11. menu[1] = "wyswietl macierz";
  12. menu[2] = "wypelnij losowo wektor";
  13. menu[3] = "wypelnij losowo macierz";
  14. menu[4] = "koniec";
  15.  
  16. Interfejs intf = new Interfejs();
  17.  
  18. intf.wyswietlMenu(menu);
  19.  
  20. }
  21. }
Add Comment
Please, Sign In to add comment