본문 바로가기

카테고리 없음

7주차 C언어

#define _CRT_SECURE_NO_WARNINGS 
#include <stdio.h>
#include <stdlib.h>


int main(void) {

    int a;
    int b;
    
    while (1) {
        scanf("%d %d", &a, &b);
        if((a == 0) && (b == 0)) break;
        else if (b % a == 0)printf("factor\n");
        else if (a % b == 0) printf("multiple\n");
        else printf("neither\n");

    }

    return 0;
}

1.두 수를 입력받는다.

2.배수인지 약수인지 판별한다.

3.출력한다.

#define _CRT_SECURE_NO_WARNINGS 
#include <stdio.h>
#include <stdlib.h>


int main(void) {

    int a, b;
    int total = 0;
    
    scanf("%d", &a);
    for (int i = 0; i < a; i++) {
        scanf("%d", &b);
        total += b -1;
        
        
    }

    total += 1;
    printf("%d", total);

    return 0;
}

1.플러그를 입력 받을 때 마다 원래 숫자에서 1을 뺀 값을 전체에 저장한다

2.마지막은 예외이므로 1을 더한다

3.총 합을 출력한다.