OOP-JAVA Practical 1
- Aim: Write a Program that displays “Welcome to Java, Learning Java Now and Programming is fun”.
- Code:
public class practical1 { public static void main (String args[]) { System.out.println("Welcome to Java, Learning Java Now and Programming is fun."); } }
- Output:
Comments
Post a Comment