본문 바로가기
Programming/코딩 테스트

[프로그래머스] 코딩테스트 입문 - 두 수의 나눗셈 (Java)

by Rayched 2023. 3. 4.

코딩테스트 문제 링크

문제 링크

▶ 문제 명: [프로그래머스] 코딩테스트 입문 - 두 수의 나눗셈 

▶ 문제 설명

 

▶ 사용한 언어: Java


▶ 문제 풀이

//프로그래머스 코딩테스트 입문
//두 수의 나눗셈

import com.sun.org.apache.bcel.internal.classfile.SourceFile;

public class Main {
    public static void main(String[] args){
        Solution Example = new Solution();
        Example.solution(3,2);
        Example.solution(7,3);
        Example.solution(1,16);
    }
}

class Solution {
    int solution(int num1, int num2){
        float result = (float)num1 / (float)num2;
   
        int answer = (int)(result * 1000);
     
        System.out.printf("num1 = %d, num2 = %d\n", num1, num2);
        System.out.printf("num1에 num2를 나눈 몫: %f\n", result);
        System.out.printf("result에 1000을 곱한 값: %d\n", answer);
        System.out.println("=============");
        return answer;
    }
}

출력 결과


▶ 풀이 과정 복기