고양이와 코딩

[프로그래머스] 3월16일 ~ 본문

C

[프로그래머스] 3월16일 ~

ovovvvvv 2024. 3. 16. 22:33
728x90

3월16일

몫 구하기

 

풀이

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>

int solution(int num1, int num2) {
    int answer = num1 / num2;
    return answer;
}

 

 

숫자 비교하기

 

 풀이

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>

int solution(int num1, int num2) {
    return num1 == num2 ? 1 : -1;
}

 

 

나이 출력

 

 

풀이

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>

int solution(int age) {
    int answer = 2022 - age + 1;
    return answer;
}

 

 

if문 파트 공부하고 풀어야지 ~~

 

'C' 카테고리의 다른 글

포인터 진짜 짜증남  (0) 2024.06.15
function  (1) 2024.06.09
포인터  (0) 2024.05.10
비트 연산  (0) 2024.05.10
[씹어먹는 C 언어] 반복문 - 삼각형 그리기  (0) 2024.03.17