1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | public class JavaApplication4 { /** * @param args the command line arguments */ public static void main(String[] args) { int start =6; for(int i=0; i<start;i++)// poziomy prostokąta { if(i==0 || i==(start-1))// jesli jest poziom 1 lub ostatni { for(int n=0; n<start;n++){//wypelniaj gwiazkami System.out.print("*"); } System.out.print("\n");//enter ;) } if(i>0 && i<(start-1))//jesli poziom nie jestpoziomem ostatnim lub pierwszym, to jest w srodku { for(int n=0; n<start;n++){//wypelnij if(n==0 || n==(start-1))//jesli poziom wiersza jest 1 lub ostatni (boki kwadratu) System.out.print("*");// rysuj gwiazdke else System.out.print(" ");// jesli nie to wypelnij spacjam } System.out.print("\n");//enter } } } } |
Mateusz Mazurek