Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90467 李昊宇 02计算(a+b)/c C++ Accepted 1 MS 272 KB 331 2024-09-15 09:55:38

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ /**int age=20; cout<<"我的年龄是: "<<age<<endl; int a,b,c; a = b = c = 2; cout<<a<<b<<c; int a,b; a=4,b=8650; int a,b,c; cin>>a; cin>>b; cin>>c;**/ int a,b,c; cin>>a>>b>>c; cout<<(a+b)/c<<endl; return 0; }