0
已解决
周俊豪
高级光能
高级光能
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
double a,b,c,d;
a=3830;
b=5490;
c=(b-a)/2;
d=b+c;
printf("%.2f",d);
return 0;
}
0
已采纳
邵逸儒
中级天翼
中级天翼
double x,y;
x赋值sqrt(5490.0/3830.0)-1;
y赋值5490*(1+x);
printf("%.2f\n",y);
0
0
0
徐云皓
新手天翼
新手天翼
核心 double m,n,s; n=3830; m=5490; s=sqrt(m/n); s=s*m; printf("%.2f",s); return 0; }
0
0