Welcome!
Here, you will get to know basics of Java Programming.
- Structure of a java program
- Classes
- Input ans Output Classes
- Operators
- conrol Statements
- Arrays
- Strings
- Packages and interfaces
- Inheritance
- Exceptions
- Threads
- Save the file with 'FileName.java'
- In cmd Navigate the prompt in the directory where the 'FileName.java' file exists.
- Type javac FileName.java A FileName.class file will be created in the same directory.
- Type java FileName
To print on screen use function:
printf()
To reads the keyboard entries in string form:
readLine()
To converts String to int:
Integer.parseInt()