السابق التالي
0 / 33
الوحدة النمطية DEMO-32-60DEMO-C-32

Solid Rectangle

DEMO-C-32 • Programming in C

Browser-only practice

بيان المشكلة

Write a program that reads two integers R and C, and prints a solid rectangle made of asterisks (*) with R rows and C columns.

Example

If R = 3 and C = 5, the output should be:


Requirements

  • Use nested loops to generate the pattern.
  • Each row must contain exactly C asterisks.
  • There should be exactly R rows printed.

قيود

You must use nested loops to solve this problem.

تنسيق الإدخال

A single line containing two space-separated integers R and C (1 ≤ R, C ≤ 20).

تنسيق الإخراج

Print R lines, each containing C asterisks (*).

حالات اختبار نموذجية

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

العينة رقم 1
عينة ظاهرة
3 5
*****
*****
*****
Input: 3 5
العينة رقم 2
عينة ظاهرة
5 2
**
**
**
**
**
Input: 5 2
العينة رقم 3
عينة ظاهرة
1 1
*
Input: 1 1
العينة رقم 4
عينة ظاهرة
6 8
********
********
********
********
********
********
Input: 6 8

Web terminal

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

Saved in this browser
إعدادات المحرر