Program - 1
class Abc
{
public static void main(String args[])
{
System.out.println("Hello");
}
}
Program - 2
class Xyz
{
public static void main(String args[])
{
System.out.println("Hi , I am
SANJEET KUMAR");
}
}
Program - 3
class Add
public static void main(String args[])
{
int a=7 , b=5 , c ;
c = a+b ;
System.out.println("The sum of two
number is = " +c);
}
}
No comments:
Post a Comment