일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 전자정부
- 상속
- 이클립스
- Login with OAuth Authentication
- 다운캐스팅
- 스프링
- 페이징
- while
- IBatis procedure
- Random
- 전체
- 로또
- 야구게임
- 가변인자
- 자바 야구게임
- 업캐스팅
- angular2
- 단축키
- Validations
- 자바
- 형변환
- jquery
- 추상클래스
- Full text
- 25가지 효율적인 sql작성법
- 전체텍스트
- 상속예제
- full text indexing
- 다형성
Archives
- Today
- Total
nalaolla
자판기 프로그램1 본문
728x90
반응형
- package test.com;
- import java.util.Scanner;
- public class Test02VendingMachine {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Scanner scanner = new Scanner(System.in); //키보드 입력 인스턴스 생성
- int inputPrice = 0; //입력금액 초기화
- String choiceStr = "음료를 선택하세요"; //입력 comment
- String prodStr1 = "1.콜라 "; //1000원 이상 음료 변수1 초기화
- String prodStr2 = "2.사이다 "; //1000원 이상 음료 변수2 초기화
- String prodStr3 = "3.쥬스 "; //1000원 이상 음료 변수3 초기화
- String prodStr4 = "1.커피";
- String prodStr5 = "2.우유";
- String prodStr6 = "3.생수";
- String str;
- final String TITLE = "[자판기 프로그램]"; //타이틀 ment 초기화
- String line = "=================================="; //라인설정
- System.out.println(TITLE);
- System.out.println(line);
- //System.out.println("금액을 입력하세요 : " + inputPrice);
- System.out.print("금액을 입력하세요 : ");
- inputPrice = scanner.nextInt();
- if (inputPrice >= 1000) {
- System.out.println(choiceStr + "(" + prodStr1 + prodStr2 + prodStr3 +")");
- int choiceNum = scanner.nextInt(); //키보드 입력숫자값
- str =
- choiceNum == 1 ? prodStr1 :
- choiceNum == 2 ? prodStr2 :
- choiceNum == 3 ? prodStr3 :
- "없는 제품";
- } else {
- System.out.println(choiceStr + "(" + prodStr4 + prodStr5 + prodStr6 +")");
- int choiceNum = scanner.nextInt(); //키보드 입력숫자값
- str =
- choiceNum == 1 ? prodStr4 :
- choiceNum == 2 ? prodStr5 :
- choiceNum == 3 ? prodStr6 :
- "없는 제품";
- }
- System.out.println("선택한 음료는 " + str + "입니다.");
- System.out.println(line);
- System.out.println("프로그램 종료");
- } //end main()
- }
728x90
반응형
'JAVA > 2. Operator' 카테고리의 다른 글
연산자 정리2 (0) | 2015.12.01 |
---|---|
연산자 정리1 (0) | 2015.12.01 |