Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
37858 huyanfeng 期末成绩-二维数组 C++ 编译错误 0 MS 0 KB 323 2024-01-23 16:53:51

Tests(0/0):


#include<iostream> using namespace std; int main(){ int n[3][2]; for(int i=0;i<3;i++){ for(int j=0;j<2;j++){ cin>>n[i][j]; } } for(int i=0;i<3;i++){ cout<<n[i][0]+n[i][1]<<" "; } cout<<endl; for(int i=0;i<2;i++){ cout<<round((n[0][i]+n[1][i]+n[2][i])/3.0)<<" "; } return 0; }


测评信息: