Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
36227 | 奚晨瑞 | 带余除法 | C++ | Accepted | 0 MS | 240 KB | 157 | 2024-01-12 15:46:53 |
#include<iostream> using namespace std; int main() { int n1,n2; cin>>n1>>n2; int n3,n4; n3=n1/n2; n4=n1%n2; cout<<n3<<" "<<n4; return 0; }