/* * Lab 1, Task 5 * * name: * email: * * * Note: Because this class is simply a collection of static methods * and it does not have a main method, you cannot run it. * See the lab for instructions about how to test the methods * that you write. */ public class Task5 { /* * print3Times - takes a string s and prints it 3 times */ public static void print3Times(String s) { for (int i = 0; i < 3; i++) { System.out.println(s); } } }