hollow rectangle pattern in java.
■》 Code link -> click ππππ
https://www.programiz.com/online-compiler/0TjBnxAuVWmjC
■》 Input->
import java.util.*;
class Main {
public static void main(String[] args) {
int n, m;
Scanner sc = new Scanner(System.in);
System.out.println("Enter the value of row=");
n = sc.nextInt();
System.out.println("Enter the value of column=");
m = sc.nextInt();
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (i == 1 || j == 1 || i == n || j == m) {
System.out.print("*");
} else {
System.out.print(" ");
}
}
System.out.println();
}
}
}
# output ->
Enter the value of row=4
Enter the value of column=5
*****
* *
* *
*****
---------------------------------------------------------------------
Comments
Post a Comment