0
已解决
杨文轩
新手光能
新手光能
题目链接: 酷町堂:4631
- #include<bits/stdc++.h>
- using namespace std;
- ;int main(){
- double a,b,c;
- cin>>a>>b>>c;
- if((a+b+c)/3>=90){
- cout<<setprecision(2)<<fixed<<(a+b+c)/3<<endl;
- cout<<"优秀";
- } else if((a+b+c)>=80&&a<90){
- cout<<setprecision(1)<<fixed<<(a+b+c)/3<<endl;
- cout<<"良好";
- } else if((a+b+c)<80){
- cout<<setprecision(1)<<fixed<<(a+b+c)/3<<endl;
- cout<<"仍需努力";
- }
- return 0;
- }
0
0
0