COS 126

Assignment 0
Programming Assignment

Due: 11:59pm

The purpose of this assignment is to familiarize you with the mechanics of preparing and submitting assignment solutions. Your goal this week is to learn to use JEdit for editing programs, javac for compiling them, java for executing them, and Whiteboard for submitting them.

Hello, World.  The purpose of this step is to set up your computer for developing Java programs.

Programming.  Your job is to write two short programs. We'll assume that you've already created, compiled, and executed HelloWorld.java by following the instructions in the previous part of the assignment. Before completing this part, you should read Intro to CS Section 2.1 and Section 2.2.

  1. Write a program HiTwo.java that takes two names as command line inputs and prints out a specified greeting using both names. For example,
    java HiTwo Alice Bob
    
    should output
    Hi, Alice!  Have you met my friend Bob?
    

  2. Write a program SumThree.java that reads in three integer command line arguments, x, y, and z. (You may assume that exactly three integer arguments will be entered when the program is run.) The program then outputs all three integers and their sum. For example,
    java SumThree 2 5 8  
    
    should output
    2 + 5 + 8 = 15
    

Submitting the programs.  Once you have HelloWorld.java, HiTwo.java and SumThree.java working, submit them via the Web. To do this, launch your favorite browser and go to the COS 126 web page:

http://www.princeton.edu/~cos126
choose Assignment Submission, and follow the instructions provided. Be sure to hit the Run Script button to check your program against our Java compiler. It should compile without errors or warnings; if not, fix the problem and resubmit it. To submit a file, you must be registered for the course and know your NetID and OIT Email password. You will receive an automated email receipt confirming your submission.

Browsing the course website.  The final part of the assignment is to browse the COS 126 Web pages. The address is:

http://www.princeton.edu/~cos126
Cruise around the COS 126 Web site; it is essential that you understand what's where and how to get to it. Be sure to fill out the online questionnaire. Also make sure you find the "Assignment 0 Checklist" page, and also be sure to read the COS 126 Collaboration Policy and answer the related questions in your readme file.