Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
6541 | jiabokai | 计算(a+b)/c的值 | C++ | Accepted | 0 MS | 252 KB | 133 | 2023-01-25 13:30:47 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; cout<<(a+b)/c; return 0; }