minhyeong
@minhyeong
Reviews Written
8
Average Rating
4.8
The introduction is empty
Posts
Q&A
2:28์ด ์ง๋ฌธ์ ๋๋ค.
#include void display(char cr, int lines, int width); int main() { char c; int rows, cols; while (1) { scanf("%c %d %d", &c, &rows, &cols); display(c, rows, cols); if (c == '\n') break; } return 0; } void display(char cr, int lines, int width) { int row, col; for (row = 1; row
- 0
- 2
- 354
Q&A
2:09์ด ๋๋ฒ๊น ํด๋ณด๋๋ฐ ๋์์ฃผ์ธ์
#include void display(char cr, int lines, int width); int main() { char c; int rows, cols; while (1) { scanf("%c %d %d", &c, &rows, &cols); display(c, rows, cols); if (c == '\n') break; } return 0; } void display(char cr, int lines, int width) { int row, col; for (row = 1; row
- 0
- 2
- 350




