Write a program to display the days of the week
You are to upload only the .java file
public class Main {
public static void main(String[] args) {
WeekDays weekDays = new WeekDays();
weekDays.show();
}
}
class WeekDays{
public String[] weekDays = {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"};
public void show(){
for (String s : weekDays) {
System.out.println(s);
}
}
}
Comments
Leave a comment