Cześć :) Czy jest ktoś, kto jest w stanie wytłumaczyć w jaki sposób w tym zadaniu zostaje spełniony ten warunek? -Metoda main powinna wywoływać metodę print3 tylko dwa razy? public class Solution { public static void print3(String s) { System.out.print(s + " "); System.out.print(s + " "); System.out.print(s + " "); } public static void main(String[] args) { print3("okno"); print3("plik"); } }