728x90 320x100 SMALL [JAVA/자바]환율변환하는 프로그램 만들기 원화를 달러로 바꾸는 프로그램 만들기 달러는 1100원이라고 가정하기 package com.example.javaBasic_h; import java.util.Scanner; public class Spot { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("원을 입력해주세요 :"); Scanner sc = new Scanner(System.in); int won = sc.nextInt(); int doller = won/1100; System.out.print(doller+"달러"); sc.close(); } } 2022. 8. 11. 이전 1 다음 728x90 반응형 BIG