赞
踩
无
输出A%B
两个整数,a和b
A%B
输入 #1
223 10
输出 #1
3
输入 #2
223 100
输出 #2
23
- #include<bits/stdc++.h>
- using namespace std;
- int main(){
- int a,b;
- cin>>a>>b;
- cout<<a%b;
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。