몽상실현개발주의

[따배씨] 8.5 숫자와 문자를 섞어서 입력받기 본문

Language/C

[따배씨] 8.5 숫자와 문자를 섞어서 입력받기

migrationArc 2021. 5. 26. 00:53

[따배씨] 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' 을 버퍼에 남겨두기 때문에 줄바꿈이 출력되는 문제가 발생

 

 


이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.

http://blog.naver.com/atelierjpro

 

실리콘 밸리의 프로그래머 : 네이버 블로그

안녕하세요! 홍정모 블로그에 오신 것을 환영합니다. 주로 프로그래밍 관련 메모 용도로 사용합니다. 강의 수강하시는 분들은 홍정모 연구소 카페로 오세요.

blog.naver.com

http://www.inflearn.com/course/following-c

 

홍정모의 따라하며 배우는 C언어 - 인프런 | 강의

'따배씨++'의 성원에 힘입어 새롭게 개발된 C 언어로 시작하는 프로그래밍 입문 강의입니다. '따배씨'와 함께 프로그래밍 인생을 업그레이드 해보세요., 따라하며 배우는 C언어 '따배씨++'의 성원

www.inflearn.com

Comments