Application that stores at least four different course names

Assignment Help JAVA Programming
Reference no: EM13940261

The application as written does not display certain class names included in the instructions as written.

Write an application that stores at least four different course names and meeting days and times in a two-dimensional string array. Allow the user to enter a course name (such as CIS 110) and display the day of the week and times that the course is held (such as Th 330). If the course does not exist, display an error message.

import javax.swing.JOptionPane;
import java.util.Scanner;

public class Schedule {
public static void main(String[] args) {
//declare variables and arrays
final int NUM_RANGES = 4;
int sub = NUM_RANGES - 1;

String[][] classNames = {
{"COM 209", "MAT 201", "MAT 141", "ENG 220"},
{"Mon 1:00","Tue 8:30","Thu 7:30","Fri 9:15",}
};

//get input
String classInput = JOptionPane.showInputDialog("Please input a class name: ");

//match to output and print
while(sub >= 0)
--sub;

if (classInput.equals(classNames[0])) {
JOptionPane.showMessageDialog(null, "Class time is: " + classNames[0][0]);
System.exit(0);
}
else if (classInput.equals("COM 209")) {
JOptionPane.showMessageDialog(null, "Class time is: " + classNames[1][1]);
System.exit(0);
}
else if (classInput.equals("MAT 201")) {
JOptionPane.showMessageDialog(null, "Class time is: " + classNames[2][2]);
System.exit(0);
}
else if (classInput.equals("MAT 141")) {
JOptionPane.showMessageDialog(null, "Class time is: " + classNames[3][3]);
System.exit(0);
}
else if (classInput.equals("ENG 220")) {
JOptionPane.showMessageDialog(null, "Class time is: " + classNames[4][4]);
System.exit(0);
}

else {
JOptionPane.showMessageDialog(null, "Please enter a valid class name.");
System.exit(0);
}
}
}

Reference no: EM13940261

Questions Cloud

In a transaction for the sale of an auto painting facility : In a transaction for the sale of an auto painting facility, Bright Auto Colors Company tells Custom Cars Corporation that the paints and other supplies on-site are included. The contract says nothing about the supplies on-site, but does state, “This ..
What is the expected rate of return to an investor : What is the expected stock price 4 years from now? The discount rate is 10%. What is the expected rate of return to an investor who buys the stock now and sells it in1 year?
Develop change management-communication strategy : Develop a change management and communication strategy incorporating organisation development aims and activities, strategic planning activities, together with an integrated communication strategy.
Organizational constraint on public criminal justce agencies : What are the organizational constraints on public criminal justice agencies? How do these constraints affect operations?
Application that stores at least four different course names : The application as written does not display certain class names included in the instructions as written.
What are job-order costing and process costing : What are job-order costing and process costing? What types of firms use job-order costing? Process costing? Give some examples of service firms that might use job-order costing, and explain why it is used in those firms.
Cost formula for its supplies cost : Ingram Framing's cost formula for its supplies cost is $1,120 per month plus $12 per frame. For the month of June, the company planned for activity of 610 frames,
What is role of material requisition forms in costing system : What is the role of materials requisition forms in a job-order costing system? Time tickets? Predetermined overhead rates?
Components of the new product development process : Choose two components of the new product development process e.g. idea generation, product development, market analysis, commercialization or product launch and describe and analyse the product development strategy adopted by an energy company as ..

Reviews

Write a Review

JAVA Programming Questions & Answers

  Develop a program to emulate a purchase transaction

Develop a program to emulate a purchase transaction at a retail store. This program will have two classes, a LineItem class and a Transaction class

  Program to translates a number into the closest letter grade

Write a program that translates a number into the closest letter grade. For example, the number 2.8 (which might have been the average of several grades) would be converted to B-. Break ties in favor of the better grade

  Write a thread function to initialize 2d array

write a thread function to initialize int 2D array x (NxN) so that each thread initializes its portion with i+j in each slot. Note that i and j relate to the entire array.

  Use java

How to use Java.

  Latin squares - puzzle

Solve button causes the program to display a single solution by using only the symbols from the top row of six text fields in such a way that the non-empty grid symbols are not altered.

  Write the string copy and string concatenation functions

Write the string copy and string concatenation functions and first version should use array subscripting, and the second version should use pointer arithmetic.

  Create application in java programming

Write method multiple that determines, for a pair of integers, whether the second integer is a multiple of the first.

  Displays every perfect number from 1 through 1000

Write an application that displays every perfect number from 1 through 1000. A perfect number is one that equals the sum of all the numbers that divide evenly into it.

  Difference between sequential access and random access

What is the difference between sequential access and random access? What are BufferedInput/OutputStreams and why are they used? Write some Java code to illustrate how to create a BufferedInputStream

  What method do you use to set the location of a frame

Write a program that converts US dollars into Canadian dollars, as shown in the following figure. The program let the user enter an amount in US dollars and display it equivalent value in Canadian dollars when clicking the Convert button.

  Declare another television object called portable

Add to the comment header as indicated at the top of the program.

  Compute the temperature in centigrade

Compute the temperature in Centigrade - Display the temperatures in both Centrigrade and Fahrenheit with appropriate labels, using the + operator to concatenate the labels with the variables

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd