题解 | 计算带余除法
计算带余除法
https://www.nowcoder.com/practice/34d3911bf2fd48a285f6396e886a1259
#include <iostream> using namespace std; int main() { int a, b; cin>>a>>b; int c=a/b; int d=a%b; cout<<c; cout<< " "; cout<<d; } // 64 位输出请用 printf("%lld")
计算带余除法
https://www.nowcoder.com/practice/34d3911bf2fd48a285f6396e886a1259
#include <iostream> using namespace std; int main() { int a, b; cin>>a>>b; int c=a/b; int d=a%b; cout<<c; cout<< " "; cout<<d; } // 64 位输出请用 printf("%lld")
相关推荐