import javax.swing.*;
/* Craig Persiko
HelloWorld.java
Simple Hello World program
*/
class HelloWorld
{
public static void main(String[] args)
{
System.out.println("Hello World!"); //Display the string.
}
}
public static void main(String[] args)
To buy the books for CS 111A Section 001, you would write:
BuyTextBooks(CourseNumber="CS 111A", SectionNumber="001");
To buy the books for English 1A Section 581, you would write:
BuyTextBooks(CourseNumber="ENGL 1A", SectionNumber="581");
Here is the generic algorithm to buy textbooks:
BuyTextBooks(CourseNumber, SectionNumber):