问题标题: http://judge.codingtang.com/problem/1348/

0
0

0
已采纳
褚福磊
褚福磊
新手光能
新手光能

核心代码:

 double S;
    int x,y,s;
    cin>>x>>y;
    s=x*y-16;
    S=sqrt(s);
    printf("%.1lf",S);

不要忘记加<cmath>

 

1
朱宗晔
朱宗晔
初级光能
初级光能

核心部分


    s=x*y-16;
    S=sqrt(s);
    printf("%.1lf",S);

 

0
0
杨子逸
杨子逸
新手天翼
新手天翼
double a,x,y;
    cin>>x>>y;
    a=sqrt(x*y-16);
    printf("%.1lf",a);
我要回答