public class MyClass { public static void main(String args[]) {
//Create an array of Strings which are initialized to the 7 days of the week using a while-loop, print all the contents of the array. (do the same for do-while and for loop)
String days[] = {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"};
}
}