[백준] 24078번 余り (Remainder) 풀이 코드 (C/C++/Java 자바/Python 파이썬)

by iamtrueline

문제 해설

원문 : 일본어(Japanese)

주어진 수를 21로 나눈 나머지를 출력합니다.

풀이

나머지 연산을 출력합니다.


코드

C

#include <stdio.h>
int main() {
    int n;
    scanf("%d", &n);
    printf("%d", n % 21);
    return 0;
}

C++

#include <iostream>
using namespace std;
int main() {
    int n;
    cin >> n;
    cout << n % 21;
    return 0;
}

Java

import java.util.Scanner;
public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        System.out.println(n % 21);
    }
}

Python

n = int(input())
print(n % 21)

문제 출처

https://www.acmicpc.net/problem/24078

You may also like

Leave a Comment

Are you sure want to unlock this post?
Unlock left : 0
Are you sure want to cancel subscription?
-
00:00
00:00
Update Required Flash plugin
-
00:00
00:00