Submit solution
Points:
100.00
Time limit:
1.0s
Memory limit:
98M
Input:
stdin
Output:
stdout
Author:
Problem type
Allowed languages
C, C++, GAS64, Pascal, Perl, PHP, Python, Sed, TCL, Text
Viết hàm ~modulo~ để hoàn thành chương trình tính số dư của phép chia m cho n.
TEMPLATE
#include <iostream>
using namespace std;
int modulo(int m, int n){
//###INSERT CODE HERE -
}
int main (){
int m, n; cin >> m >> n;
cout << modulo(m, n);
}
Input
Hai số nguyên m và n
Output
Số dư khi m chia cho n
Ví dụ
Example Input
990 88
Example Output
22
Comments