본문 바로가기

백준/C

[BaeKJoon/C] 백준19602 c Dog Treats

반응형

https://www.acmicpc.net/problem/19602

 

19602번: Dog Treats

There are three lines of input. Each line contains a non-negative integer less than 10. The first line contains the number of small treats, S, the second line contains the number of medium treats, M, and the third line contains the number of large treats,

www.acmicpc.net

 

문제

1 × S + 2 × M + 3 × L

여기서 S는 작은 트리의 수이고, M은 중간 트리의 수이고 L은 큰 트리의 수입니다.

보리의 행복 점수가 10점 이상이면 그는 행복합니다. 그렇지 않으면, 그는 슬퍼한다. 하루가 끝날 때 보리가 행복한지 슬픈지 결정하세요.

 

코드

#include <stdio.h>
 
int main() {
 
    int S, M, L, B;
    scanf("%d %d %d"&S, &M, &L);
 
    B = 1 * S + 2 * M + 3 * L;
 
    if (B >= 10)
        printf("happy");
    else printf("sad");
    
}
 
 
 
cs

 

 

 

 

반응형

'백준 > C' 카테고리의 다른 글

[BaeKJoon/C] 백준16435 c 스네이크버드  (4) 2021.05.23
[BaeKJoon/C] 백준10172 c 개  (1) 2021.05.22
[BaeKJoon/C] 백준20254 c site score  (0) 2021.05.22
[BaeKJoon/C] 백준10171 c 고양이  (1) 2021.05.22
[BaeKJoon/C] 백준20492 c 세금  (0) 2021.05.22