Dev.J
[JAVA] 문제 1-3 동전갯수 총액 본문
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");
}
}
728x90
'Solved' 카테고리의 다른 글
[JAVA] 문제 2-2 주민번호 성별 판별 (0) | 2021.07.18 |
---|---|
[JAVA] 문제 2-4 오버로딩 (0) | 2021.07.17 |
[JAVA] 문제 2-3 난수의 합과 평균 (0) | 2021.07.15 |
[JAVA] 문제 2-1 배열 - 정수의 합 출력/문자열 출력 (0) | 2021.07.15 |
[JAVA] 문제 1-2 대소문자 변환 (0) | 2021.07.15 |