Pascal triangle 3
This program will display the pascal triangle or print star pattern as shown in output.
System.out.print("....."): are used for display message on screen or console but cursor not move in new line.
System.out.println("....."): are used for display message on screen or console cursor move in new line.
PROGRAM
System.out.print("....."): are used for display message on screen or console but cursor not move in new line.
System.out.println("....."): are used for display message on screen or console cursor move in new line.
PROGRAM
class PascalTriangle3 {
public static void main(String[] args) {
for(int i=5; i>0; i--) {
for(int j=0; j<i; j++) {
// This loop will show star '*'
System.out.print("* ");
}
System.out.println("");
}
}
}
OUTPUT
C:\>javac PascalTriangle3.java C:\>java PascalTriangle3 * * * * * * * * * * * * * * *