问题标题: 酷町堂:这道题哪错了?

0
1
已解决
陈哲豪
陈哲豪
初级守护
初级守护
#include<iostream>  
using namespace std;
int main()
{
    int a,b,c;
    int d1,d2,d3,d4,d5,d6;
    a=3;b=4;c=5;
    d1=a>b;
    d2=a==b;
    d3=a<=b+c;
    d4=a!=b;
    cout<<d1<<" "<<d2<<" "<<d3<<" "<<d4;
    return 0;
}

 

陈哲豪在2019-12-05 15:54:10追加了内容

是1348


0
已采纳
解宇乐
解宇乐
中级守护
中级守护

c=a*b-16; d=sqrt(c);

printf("%.1f",d);

这是核心,你没有输入,不要忘记int改成double!

0
0
贾志骜
贾志骜
新手光能
新手光能

d1=a>b;

d2=a==b;

d3=a<=b+c;

d4=a!=b;

打括号试下

0
0
张峻僮
张峻僮
中级守护
中级守护
 int x,y; 
double s; 
cin>>x>>y; 
s=sqrt(x*y-16); 
s=int(s*10+0.5)/10.0; 
printf("%.1f",s);

 要加

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

 望采纳!!

0
江齐悦
江齐悦
高级光能
高级光能
int x,y;
    cin>>x>>y;
    printf("%.1f",sqrt(x*y-16));
这是核心代码

别忘了加#include<cstdio>和#include<cmath>哦
望采纳

 

我要回答