When I run this program, its output is exactly the same which is required in the condition. But still while verifying it, the fifth condition is not satisfied. What to do?
package com.codegym.task.task02.task0219;
/*
Print three times
*/
public class Solution {
public static void print3(String s) {
//write your code here
System.out.print(s);
System.out.print(s);
System.out.println(s);
}
public static void main(String[] args) {
print3("window ");
print3("file ");
}
}