행복한 프로그래밍

단순한 오타

영웅*^%&$ 2018. 2. 9. 15:20
728x90

#include <stdio.h>

main(){
    int value1;
    int value2;
    int quotient;
    int remainder;

    printf("첫 번째 정수: ");
    scanf("%d", &value1);

    printf("두 번째 정수: ");
    scanf("%d", &value2);

    quotient = value1 / value2;
    remainder = value1%value2;

    printf("\n몫은 %d입니다. \n", quotient);
    printf("나머지는 %d입니다. \n", remainder);

    return 0;
}

이걸 프로그래밍하다가 실수로 
#include <stdio.h>
main(){
    int value1;
    int value2;
    int quotient;
    int remainder;
    printf("첫 번째 정수: ");
    scanf("%d", &value1);
    printf("두 번째 정수: ");
    scanf("%d", &value2);
    quotient = value1 / value 2;
    remainder = value1%value2;
    printf("\n몫은 %d입니다. \n", quotient);
    printf("나머지는 %d입니다. \n", remainder);
    return 0;
}

이렇게 프로그래밍했었다 

그래서 오류가 나고 실행이 되지 않았다 굉장히 당황했는데 

아주 단순한 것이었다 혹시 순발력있으신 분은 순식간에 알아볼 수 있을 것이다


이렇게 작은 것으로도 완전 다른 결과가 나올 수도 있다는 것을 배웠다

많은 공부가 되었다 

728x90

'행복한 프로그래밍' 카테고리의 다른 글

factorial  (0) 2018.02.20
ID의 원리   (0) 2018.02.20
합계를 구하는 프로그래밍  (0) 2018.02.09
컴퓨터의 계산 속도 (calculating speed)  (0) 2018.02.09
고치는 방법  (0) 2018.02.03