본문 바로가기

프로그래밍 문제/정올

529 : 선택제어문 - 자가진단2

Java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import java.util.Scanner;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int height = sc.nextInt();
        int weight = sc.nextInt();
        int fat = weight + 100 - height;
 
        System.out.println(fat);
        if (0 < fat) {
            System.out.println("Obesity");
        }
    }
 
}
cs