Advertisement
Varasku

Kwadrat gwiazdkami

Nov 15th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1.  
  2. package e9lul;
  3.  
  4.  
  5. public class E9lul {
  6.  
  7.  
  8. public static void main(String[] args) {
  9. int szer=5, wysokosc=5;
  10. for(int i=1;i<=szer;i++){
  11. for(int k=1;k<=wysokosc;k++)
  12. System.out.print("*");
  13.  
  14. System.out.println();
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement