[JAVA] Programmers 부족한 금액 계산하기 ☑
·
Programmers/java
내가 푼 답안 class Solution { public long solution(int price, int money, int count) { long totalprice = 0; for(int i=0; i money){ totalprice -= money; } else { return 0; } return totalprice; } } 다른답안 vscode class Solution { public static void main(String[] arg) { int price = 3; // = 은 대입이다. int money = 20; int count = 4; System.out.println(solution(price, money, count)); // 메소드를 지정하겠다. solution } pub..