Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
53660 | zhangsicun | 画矩形 | C++ | 解答错误 | 0 MS | 192 KB | 499 | 2024-10-24 22:30:05 |
#include <stdio.h> int main() { int height, width; char symbol; int isFilled; scanf("%d %d %c %d", &height, &width, &symbol, &isFilled); for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { if (isFilled || (i == 0 && j == 0) || (i == height - 1 && j == width - 1)) { printf("%c", symbol); } else { printf(" "); } } printf("\n"); } return 0; }