inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

휴식중인너구리님의 게시글

휴식중인너구리 휴식중인너구리

@minhyeong

수강평 작성수
8
평균평점
4.8

게시글 2

질문&답변

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
조회수
381

질문&답변

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
조회수
382