본문 바로가기
코딩테스트/프로그래머스 기초

[코딩테스트 Lv.0] 정수 부분

by 블루데이제이 2024. 7. 1.
728x90
반응형
문제 설명

실수 flo가 매개 변수로 주어질 때, flo의 정수 부분을 return하도록 solution 함수를 완성해주세요.

제한사항
0 ≤ flo ≤ 100
입출력 예
flo	result
1.42	1
69.32	69
입출력 설명
입출력 예 #1
1.42의 정수 부분은 1입니다.

입출력 예 #2
69.32의 정수 부분은 69입니다.

내 풀이
Java
class Solution {
    public int solution(double flo) {
        int answer = 0;
        return (int) flo;
    }
}
C
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>

int solution(double flo) {
    int answer = flo;
    return answer;
}
Python
def solution(flo):
    answer = 0
    return int(flo)

https://school.programmers.co.kr/learn/courses/30/lessons/181850

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

728x90
반응형