2480번자바
-
[백준 알고리즘/Java] 2480번 주사위 세개IT Study/백준 알고리즘 2023. 3. 13. 15:15
Math 함수를 사용하지 않고, if문을 활용하여 풀기 위해 많은 코드를 작성하였습니다. import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a, b, c; a = sc.nextInt(); b = sc.nextInt(); c = sc.nextInt(); if(a==b && b==c) { System.out.println(10000 + a*1000); } else if (a==b) { System.out.println(1000 + a*100); } else if (b==c) { System.out.println(1000 + b*100); } ..