| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/Programing-Forks/Java-Programs/master/Patterns/Pattern27.java | [Back] [Original] |
package Patterns;
import java.util.Scanner;
public class Pattern27 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("How many rows you want in this pattern?");
int rows = sc.nextInt();
System.out.println("Here is your pattern....!!!");
// Printing upper half of the pattern
for (int i = 1; i
| Web Proxy Viewer | New URL | Original Page |