(4) 문제

JAVA/간단한 코드 2018. 10. 21. 21:30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package Studypackage;
 
import java.util.Scanner;
 
public class studyclass 
{
    // 문제 score 가 0보다 작거나 100보다 큰 값
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        
        int score;
        
        System.out.print("score 는 ? :");
        score = sc.nextInt();
        System.out.println("score : " + score);
        String temp = score < 0 || score > 100 ? "0보다 작거나 100보다 크다" : " 0 ~ 100 ";
        System.out.println("입력하신 score 는" + temp );
    }
}
 
cs



0 보다 작거나 100보다 클때


   



0 ~ 100 사이의 수


   



'JAVA > 간단한 코드' 카테고리의 다른 글

(11) 문제  (0) 2018.10.30
(10) 문제  (0) 2018.10.29
(9) 문제  (0) 2018.10.28
(7) 문제  (0) 2018.10.24
(5) 문제  (0) 2018.10.22

설정

트랙백

댓글