Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
231 | ZRH | 02计算(a+b)/c | C++ | Accepted | 0 MS | 252 KB | 328 | 2022-07-22 10:23:14 |
#include<iostream> //输入函数库 #include<iomanip> #include<cmath> //数学函数库 #include<cstdio> #include<ctime> #include<cstring> #include<cstdlib> #include<string> #include<stdlib.h> #include<sys/time.h> using namespace std; int main(){ int x,y,z; cin>>x>>y>>z; cout<<(x+y)/z; return 0; }