Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144740 田祥江 函数求和 C++ Wrong Answer 0 MS 260 KB 228 2026-01-24 16:43:33

Tests(0/1):


Code:

#include<bits/stdc++.h> using namespace std; int c(int a,int b){ return a+b; } int main() { int a=1,b=10,n=20,d=30,e=35,f=45; cout<<c(a,b)<<endl; cout<<c(n,d)<<endl; cout<<c(e,f)<<endl; return 0; }


Run Info:

------Input------
0
------Answer-----
55 275 440
------Your output-----
11 50 80