问题标题: 1348怎么做?

0
0

0
已采纳
李汉魁
李汉魁
中级光能
中级光能

1. 定义整形变量x,y并输入它们 ;
2. 根据长方形的边长=长方形面积的平方根(是由S=a*a推出来的),输出(保留一位小数,四舍五入)sqrt(x*y-16);
注:要用sqrt求平方根函数,要用cmath库,用到printf输出函数 ,要用cstdio库

printf("%.1f",(int)(sqrt(x*y-16)*10+0.5)/10.0; 
//这是输出代码,切记:要四舍五入!剩下的你应该懂了吧?!

 

2
王梓澳
王梓澳
中级光能
中级光能
z=c*k-16;
    b=sqrt(z);
    printf ("%.1f\n",(int)(b*10 + 0.5) / 10.0);

应该这样做

1
贾浩程
贾浩程
资深守护
资深守护

3个学过的头文件,用上。

1个double,2个int;

a=sqrt(x*y-16);

贾浩程,酷町豆给我!!!

0
臧启亚
臧启亚
初级光能
初级光能

核心代码

cin>>a>>b;
    c=a*b-16;
    d=sqrt(c);
    printf("%.1f",d);

 

0
杨陈卓
杨陈卓
新手天翼
新手天翼
    double x,y,a;
    cin>>x>>y;
    a=sqrt(x*y-16);
    printf("%.1f",int(a*10+0.5)/(10*1.0));

 

0
张马润泽
张马润泽
初级光能
初级光能

    double x,y,zb,zm,cm;
    cin>>x>>y;
    cm=x*y;
    zm=cm-16;
    zb=sqrt(zm);
    printf("%.1f",zb,int((zb+0.5)*10)/10.0);

核心代码

0
黄俊博
黄俊博
资深光能
资深光能

注意cmath,cstdio头文件。

定义double类型变量

核心如下:

n=sqrt(x*y-16);
    printf("%.1f",n);

望采纳,谢谢。

0
0
陆麟瑞
陆麟瑞
资深天翼
资深天翼

直接倒推就行了。

cin>>x>>y;
    printf("%.1lf",sqrt(x*y-16));

头文件:#include <cstdio>

#include <iostream>

#include <cmath>

0
颜咏春
颜咏春
中级光能
中级光能
float a,b,t;
    cin>>a>>b;
    t=sqrt(a*b-16);
    printf("%.1f",t);
    return 0;   
0
张月柔
张月柔
初级守护
初级守护
{
    int x,y;
    double a;
    cin>>x>>y;
    a=sqrt(x*y-16);
    printf("%.1f",a);
}

 

0
黄俊博
黄俊博
资深光能
资深光能
cin>>x>>y;
    n=sqrt(x*y-16);
    printf("%.1f",n);

望采纳,谢谢。

0
詹子都
詹子都
新手光能
新手光能

核心代码如下:

a=x*y;
b=a-16;
f=sqrt(b);
printf("%.1f",double(int(f*10+0.5)/10.0));

打三个头文件:

#include<iostream>
#include<cstdio>
#include<cmath>

 

-1
刘振波
刘振波
初级光能
初级光能
a=sqrt(x*y-16);

应该这样做

我要回答