Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- BFS
- JavaScript
- Python
- greedy
- dfs
- 정수론
- 백준
- Algospot
- 따라하면서 배우는 C언어
- programmers
- server
- BOJ
- C언어
- php
- graph
- BASIC
- Math
- C
- 따배씨
- 따라하며 배우는 C언어
- String
- Cleancode
- Algorithm
- DP
- web
- udemy
- sorting
- 생활코딩
- 종만북
- 인프런
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 8.5 숫자와 문자를 섞어서 입력받기 본문
따배씨 - 따라하며 배우는 C언어
8강 문자 입출력과 입력 유효성 검증
8.5 숫자와 문자를 섞어서 입력받기
#include <stdio.h>
void display (char ch, int lines, int width);
int main()
{
char c;
int rows, cols;
while (1)
{
scanf("%c %d %d", &c, &rows, &cols);
while(getchar() != '\n')
continue;
display(c, rows, cols);
if (c == '\n')
break;
}
return 0;
}
void display(char ch, int lines, int width)
{
for (int row = 0; row < lines; ++row){
for (int col = 0; col < width; ++col){
printf("%c", ch);
}
printf("\n");
}
}
- Enter 만 입력시(종료 조건), 종료되지 않는 문제 발생
#include <stdio.h>
void display (char ch, int lines, int width);
int main()
{
char c;
int rows, cols;
while ((c = getchar()) != '\n')
{
scanf("%d %d", &rows, &cols);
while (getchar() != '\n')
continue;
display(c, rows, cols);
}
return 0;
}
void display(char ch, int lines, int width)
{
for (int row = 0; row < lines; ++row){
for (int col = 0; col < width; ++col){
printf("%c", ch);
}
printf("\n");
}
}
while (getchar() != '\n') continue;
- getchar 를 while 종료 조건으로 이용하여 해결
- buffer에 남은 문자 처리 ( 줄바꿈 출력 해결 )
- scanf는 읽고 싶은 (지정한) 문자열만 읽고 '\n' 을 버퍼에 남겨두기 때문에 줄바꿈이 출력되는 문제가 발생
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
'Language > C' 카테고리의 다른 글
[따배씨] 8.7 입력 스트림과 숫자 (0) | 2021.05.26 |
---|---|
[따배씨] 8.6 입력 확인하기 (0) | 2021.05.26 |
[따배씨] 8.4 사용자 인터페이스는 친절하게 - 방법론적인 측면 (0) | 2021.05.26 |
[따배씨] 8.1 입출력 버퍼 ~ 8.3 입출력 방향 재지정 (0) | 2021.05.26 |
[따배씨] 7.13 goto 를 피하는 방법 (0) | 2021.05.24 |
Comments