Your Event Planner app must give users a way show the events at-a-glance. An eve
ID: 3672802 • Letter: Y
Question
Your Event Planner app must give users a way show the events at-a-glance. An event is someth has a test due on 2/28/2016 and that test has a high priority. The users a way to enter events and e. An event is something like CPSC 2730 he events has a test due on 2/28/2016 and that test has a high priority. The ev are stored in a file. ts Once the events are uploaded, the app must display an even at-a-glance view showing: Today's Events. All events that are due today Upcoming Events. All events that are due within a week of toda Overdue Events. All events that are past due, Prioritized Events. A list of all events in prioritized order, and Course Events. A list of events but only for a particular courseExplanation / Answer
import java.util.Scanner;
public class EventPlanner
{
public static void main(String[] args)
{
String courseCode;
String courseType;
String dueDate;
String priority;
Scanner sc=new Scanner(System.in);
System.out.println("Enter Course : ");
courseCode=sc.nextLine();
System.out.println("Type : ");
courseType=sc.nextLine();
System.out.println("Due Date : ");
dueDate=sc.nextLine();
System.out.println("Priority : ");
priority=sc.nextLine();
System.out.println(courseCode+" test due on "+dueDate+" "+ priority);
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.