Open the text editor TextPad (Start - TextPad 8, with the letter T). Create a class called Demo. Type the following:
// Demo.java
class Demo {
}
.
Save the text in a file called Demo.java. Create a directory on a suitable drive (for example, the C drive) and save the file there. The directory can be called, for example, programming. On the school's computers, the file is saved on the H drive. Create there a directory called programming and the directory ovens in it.
Add the main method to the Demo class. Expand the program like this:
// Demo.java
class Demo {
public static void main (String[] args) {
}
}
"
Open the text editor TextPad (Start - TextPad 8, with the letter T). Create a class called Demo. Type the following:
// Demo.java
class Demo {
}
.
Save the text in a file called Demo.java. Create a directory on a suitable drive (for example, the C drive) and save the file there. The directory can be called, for example, programming. On the school's computers, the file is saved on the H drive. Create there a directory called programming and the directory ovens in it.
Add the main method to the Demo class. Expand the program like this:
// Demo.java
class Demo {
public static void main (String[] args) {
}
}
"