Previous Next
0 / 33
Module DEMO-32-60DEMO-C-32

Hollow Rectangle

DEMO-C-32 โ€ข Programming in C

Browser-only practice

Problem Statement

Write a program that reads two integers R and C and prints a hollow rectangle of stars.

Constraints

1 <= R, C <= 20

Input Format

Two integers R and C (1 <= R, C <= 20).

Output Format

A hollow rectangle of stars.

Sample Testcases

Submit runs every public testcase in this browser. Results and code never leave this device.

Sample #1
Public sample
3 5
*****
*   *
*****
Input: 3 5
Sample #2
Public sample
2 6
******
******
Input: 2 6
Sample #3
Public sample
1 1
*
Input: 1 1
Sample #4
Public sample
3 3
***
* *
***
Input: 3 3

Web terminal

C, C++, Java, and Python run locally in a browser VM. No worker or visualizer is used.

Saved in this browser
Editor settings