package (여러분껄로 바꾸세요);
import java.util.Scanner;
public class (여러분 클레스명으로 바꾸세요) {
public static void main(String[] args) {
/*
* 편의점 프로그램
* 지불금액 : 3260원
* 자신의 돈 : 10000원
*
* 거스름돈 : 출력
* 5000-> ?장
* 1000 -> ?장
* 500 -> ?
* 100 -> ?개
* 50 -> ?개
* 10 -> ?개
*/
Scanner sc = new Scanner(System.in);
int a, c, result;
System.out.print("지불금액을 입력해주세요 : ");
//첫번째 숫자 입력받기
a = sc.nextInt();
//두번째숫자 입력받기
System.out.print("자신의 낼 금액을 입력해주세요: ");
c = sc.nextInt();
//결과출력
//+ - * / %
result = c - a;
System.out.println("================================");
System.out.println("거스름돈은 " + result + "원 입니다.");
int re1 = result / 5000;
int re2 = (result % 5000) / 1000;
int re3 = ((result % 5000) % 1000) / 500;
int re4 = (((result % 5000) % 1000) % 500) / 100;
int re5 = ((((result % 5000) % 1000) % 500) % 100) / 50;
int re6 = (((((result % 5000) % 1000) % 500) % 100) % 50) /10;
System.out.println("잔돈은 5000원짜리"+ re1 +"장");
System.out.println("잔돈은 1000원짜리"+ re2 +"장");
System.out.println("잔돈은 500원짜리"+ re3 +"개");
System.out.println("잔돈은 100원짜리"+ re4 +"개");
System.out.println("잔돈은 50원짜리"+ re5 +"개 입니다.");
System.out.println("잔돈은 10원짜리"+ re6 +"개 입니다.");
'language > java실습' 카테고리의 다른 글
[java,자바] 짝수의 합, 홀수의 합 (0) | 2020.12.22 |
---|---|
[java,자바] 별찍기 (0) | 2020.12.21 |
[java, 자바] for문을 이용한 구구단 작성 (0) | 2020.12.21 |
[java,자바] 환경변수 설정 (0) | 2020.12.18 |
[java,자바] 이클립스 설치 (2) | 2020.12.18 |
최근댓글