This is in the ED building.
Textbook:Simply Java Programming, (Deitel, Deitel, Listfield, Yaeger, Zhang) Prentice Hall Publisher – Upper Saddle River, New Jersey ISBN: 0 – 13 – 142648-6
Links to booksellers: (None of these are endorsed or tested)
Save Money on Textbooks - from the folks at Dealnews
Course Syllabus (As a Google Doc)
Read this document on Scribd: CEd516 SYL Fall 2008
Here are the .java files for testing your system. (Cut and paste them into jgrasp or your editor)
// a very simple program
// use this to make sure your equipment is
// set up right for command line use
// Written by John Sklar for CEd516
//
public class test_console
{
public static void main (String args[])
{
System.out.println("Is this in the command window?");
}
}
// a very simple program
// use this to make sure your equipment is
// set up right
// Written by John Sklar for CEd516
//
import javax.swing.*;
public class test_setup
{
public static void main (String args[])
{
JOptionPane.showMessageDialog( null,
"Testing 1 2 3...",
"This is just a test",
JOptionPane.INFORMATION_MESSAGE);
}
}
No comments :
Post a Comment
Note: Only a member of this blog may post a comment.