Hello, can someone please help me out with this code ? import java.lang.String; / Life is not fair Write a program that displays 9 times: «Life is not fair - get used to it.». / public class Solution { public static void main(String[] args) { //add your code here }
} I have no idea how to do it, I tried everything i know, but no luck :/ |
In main method call the function print3Times("Life is not fair - get used to it.") 3 times. |
You call the function print3Times 3 times in the main function!
|