package com.codegym.task.task02.task0219;
public class Solution {
public static void print3(String s) {
System.out.print(s + " " + s + " " + s + " ");
}
public static void main(String[] args) {
print3("window");
print3("file");
}
}
Why does my screen display it like this?
window window window file file file
