검색결과 리스트
JAVA/간단한 코드에 해당되는 글 6건
- 2018.10.21 (4) 문제
글
(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 사이의 수