Last revision: 1 June 2000 at 2:20 pm

CS 1: Lab 1 -- Mastering the IDE for java

Date Due: September 4

To do this assignment, you must have kawa installed and operational on your machine.  I would suggest that you try the lab machines first before installing it on your personal machine.
 
  1. Kawa is an icon on the Lab Application tool bar. Click on it to bring up the IDE (interactive development environment).
  2. Make a new folder from Windows explorer for this project -- on your diskette name the folder Lab1
File menu  :   New
        Type in this program (which is similar to the one on  page 15 of your text)  into the window untitled1
import java.io.*;
class Program1 {
/* Filename: Program1.java
   Author: Your name
   Date: Today's Date mm/dd/yy
   Version: 1.0
   Description: This program announces my first Java
                program experience, and signals my
                intent to continue.
 */
  public static void main (String[] arg) {
     System.out.println("This is your name's first Java Program");
     System,out.println("but it won't be his/her last.");
  }
}
File menu : save as
        get to your folder for this assignment by selecting your diskette drive A:  from the pull down menu in the lower right, and then navigating through the directories menu to Lab1.
        type the name Program1.java in the box in the upper left

Build menu :  Compile

Build menu : Run Hand in:
Your diskette.  You name and course CS1 Fall 2000 should be on the paper label
  • A  print out of what you have done.
    1. Do not close Kawa, leave it showing

    2. Place the cursor on the line which says Process Exit...
    3. Now hold down the mouse button as you select (highlight) all the contents of that window.
    4. From the Kawa Edit menu -- copy
    5. Open Microsoft Word from the Lab Applications folder but don't close the application kawa.
    6. Within Word,

    On your own: