This assignment gives you a chance to use the environments and write a couple Java programs. There are many issues when you start to write your first program. Hence, we highly recommend that you do NOT wait until the last day.
Due: 11:55 p.m., Oct. 16, Thursday.
In this course, each Java file should always consist of the following three components:
Create the HelloWorld.java file:
//*******************************************************************
//
// File: HelloWorld.java Assignment No.: 1
//
// Author: Qiao Xiang Email: qiaoxiang@xmu.edu.cn
//
// Class: HelloWorld
//
// Time spent on this problem: 0.5 hour
// --------------------
// This program prints a string called "Hello World!".
//
//*******************************************************************
public class HelloWorld
{
public static void main(String[] args)
{
System.out.println("Hello World!");
} // end of method main
} // end of class HelloWorld
Compile HelloWorld.java and run the program.
Introduce the following errors, one at a time, to the HelloWorld program above. Record any error messages that the compiler produces, if any. You may want to use copy and paste to record the error messages. Restore the program before you introduce a new one. Try to predict what will happen before you make each change.
Please save (cut and paste or type) all of the error messages in a file named Errors.txt
Write a Java application that prints, on separate lines, your name, the
computer you are programming in Java (e.g., Pantheon, my personal Mac X, my personal Windows), your favorite book, and your favorite restaurant.
Label each piece of information in the output, for example,
Computer: my personal Win7
Please name the source file as Self.java. The file
should include comments similar to Part 1.
All you need to submit electronically for assignment #1 is the HelloWorld.java file, the Errors.txt file,
and the
Self.java file. Please submit using Gitee.
The submission repository for ps1 is https://gitee.com/simmonsong/ct-xmuf25-ps1.
Please follow the instructions in Assignments Submission to submit your assignments.
Git introduction is a help document for git utilization..
Good luck and enjoy!