Solved

Write a Method to Display a Pattern as Follows

Question 12

Short Answer

Write a method to display a pattern as follows:
1
1 2
1 2 3
...
...
1 2 3 4 5 ... n
The method header is
public static void displayPattern(int n)
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
// Enter the side of the pentagon
System.out.print("Enter n: ");
int n = input.nextInt();
displayPattern(n);
}
public static void displayPattern(int n) {
// Fill in the code here
}
}

Correct Answer:

verifed

Verified

public sta...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions

Unlock this Answer For Free Now!

View this answer and more for free by performing one of the following actions

qr-code

Scan the QR code to install the App and get 2 free unlocks

upload documents

Unlock quizzes for free by uploading documents