NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1121 : 나머지 구하기

1nfra 2020. 5. 3. 00:42
728x90
1
2
3
4
5
6
7
8
9
#include <stdio.h>
 
int main() {
    int a, b;
    scanf("%d %d"&a, &b);
    int(i) = a % b;
    printf("%d", i);
}
 
cs
728x90