inflearn logo
Khóa học

Khóa học

Chia sẻ kiến thức

Bài viết của minhyeong

minhyeong minhyeong

@minhyeong

Số lượng đánh giá đã viết
8
Xếp hạng trung bình
4.8

Bài viết 2

Hỏi & Đáp

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

Lượt thích
0
Số bình luận
2
Lượt xem
396

Hỏi & Đáp

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

Lượt thích
0
Số bình luận
2
Lượt xem
393