You can try the following using NetBean or notepad :

Java Introduction 1

public class Welcome{
public static void main (String args[]) {
System.out.print( "welcome to ") ; System.out.println ("Java Programming!") ;

}
}

Java Introduction 2

public class Welcome2 {
public static void main (String args[]) {
System.out.println( "welcome\nto\njava\nprogramming!") ;

}
}


Java Introduction 3

public class Ex {
public static void main (String a []) {
System.out.println( "#\n###\n####");

}
}

0 Comments:

Post a Comment