Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98109 李谨睿 计算平均数 C++ Compile Error 0 MS 0 KB 291 2024-11-17 12:46:17

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ float d=0; int a[5],b=0; for(int i=0;i<=4;i++){ cin>>a[i]; } for(int i=0;i<=4;i++){ b=b+a[i]; } d=b/5; printf("%.2f",d) cout<<d; for(int i=0;i<=4;i++){ if(a[i]>d){ cout<<a[i]; } } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:14:2: error: expected ';' before 'cout'
  cout<