Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135108 赵锦鹏 02计算(a+b)/c C++ Accepted 2 MS 268 KB 135 2025-11-02 15:50:13

Tests(10/10):


Code:

#include<iostream> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c>>d; d=(a+b)/c; cout<<d<<endl; return 0; }