CSC112 - Structured Programming I: Java
 

Syllabus  
[Document]

Office Hours  
[Document]

Lecture notes/slides  
[ZIP file]

Assignments  
 
 
#1
Assigned: 6-5-2003 Due: 6-12-2003
  Exercise(s):

Write a program that draws a smiley (i.e. similar to Diamond we did in class).

  Note: Please, see submission guidelines below.

 
#2
Assigned: 6-19-2003 Due: 7-03-2003 >>>NEW<<<
  Exercise(s):

Textbook, page 123/124:

Programming projects: 2.4, 2.6, 2.8, 2.13 (optional)

Hint: Use JOptionPane to read the values from the keyboard:

String message = "Your message...";
String valueStr =
        JOptionPane.showInputDialog(null, message);
int value = Integer.parseInt(valueStr);

Use System.exit(); at the end of the program (as shown in class).

  Note: Please, see submission guidelines below.

Submission guidelines >>>IMPORTANT<<<
 

Your submission should consist of the following:

  • a cover page with
    • course and section number
    • your full name
    • your username on linux.cs.lsus.edu
    • your e-mail address
    • assignment number
  • a printout of your work (a window can be captured pressing [ALT][Print Screen]; paste the content into a word processor of choice by pressing [CTRL][V])
  • staple your complete submission (one stapled document per assignment)

[Submission template]


 
Java resources  
Thinking in Java (e-book) [pdf]