Witam, jestem laikiem i nie wiem co zrobiłem źle. W zadaniu wszystkie warunki są na zielono oprócz ostatniego, od którego są zależne te nad nim. Poniżej wklejam kod programu, który ma wyświetlać tekst w 16 liniach. Wydaje mi się, że wszystko jest dobrze i że to chyba nie jest mój błąd. Proszę o weryfikację i nakierowane w ewentualny błąd. Z góry dziękuję. /* Nie chce Ci się? Mimo wszystko – zrób to. */ public class Solution { public static void main(String[] args) { //tutaj wpisz swój kod String a = "Jeżeli"; System.out.println(a); String b = "masz"; System.out.println(b); String c = "na"; System.out.println(c); String d = "to"; System.out.println(d); String e = "ochotę,"; System.out.println(e); String f = "wykonaj"; System.out.println(f); String g = "zadanie."; System.out.println(g); String h = "Jeżeli"; System.out.println(h); String i = "nie"; System.out.println(i); String j = "masz"; System.out.println(j); String k = "na"; System.out.println(k); String l = "to"; System.out.println(l); String m = "ochoty,"; System.out.println(m); String n = "zrób"; System.out.println(n); String o = "to mimo"; System.out.println(o); String p = "wszystko"; System.out.println(p); } }