Dev.J

[JAVA] 문제 1-3 동전갯수 총액 본문

Solved

[JAVA] 문제 1-3 동전갯수 총액

JJ____ 2021. 7. 15. 22:08

500원, 100원, 50원, 10원짜리 동전의 갯수를 입력하여 돈의 액수를 계산하는 프로그램.
 nextInt() 이용

 

---

 

import java.util.*;

public class Main
{
public static void main(String[] args) {

    int fhd;
    int hd;
    int fty;
    int ten;

Scanner sc = new Scanner (System.in);

System.out.println("500원 동전의 개수 : \n");
fhd = sc.nextInt();
System.out.println("100원 동전의 개수 : \n");
hd = sc.nextInt();
System.out.println("50원 동전의 개수 : \n");
fty = sc.nextInt();
System.out.println("10원 동전의 개수 : \n");
ten = sc.nextInt();

System.out.println("금액은"+(fhd*500+hd*100+fty*50+ten*10)+"원 입니다.\n");
}
}

 

문제풀이_JJ

728x90