Những câu hỏi liên quan
PP
Xem chi tiết
SE
Xem chi tiết
NT
19 tháng 10 2021 lúc 23:33

Câu 2: 

#include <bits/stdc++.h>

using namespace std;

double a,b,cv,dt;

int main()

{

cin>>a>>b;

cv=(a+b)*2;

dt=a*b;

cout<<"Chu vi la:"<<fixed<<setprecision(2)<<cv<<endl;

cout<<"Dien tich la:"<<fixed<<setprecision(2)<<dt;

return 0;

}

Bình luận (0)
TT
Xem chi tiết
NT
13 tháng 5 2021 lúc 17:02

uses crt;

var a,b,c,p,s:real;

begin

clrscr;

repeat

write('Nhap a='); readln(a);

write('Nhap b='); readln(b);

write('Nhap c='); readln(c);

until (a>0) and (b>0) and (c>0) and (a+b>c) and (a+c>b) and (b+c>a);

p:=(a+b+c)/2;

s:=sqrt(p*(p-a)*(p-b)*(p-c));

writeln(s:4:2);

readln;

end.

Bình luận (0)
PD
Xem chi tiết
PD
18 tháng 12 2021 lúc 7:37

mọi người giúp em giải bài này vs ạ

Bình luận (0)
NT
18 tháng 12 2021 lúc 10:55

#include <bits/stdc++.h>
using namespace std;
double a,b,c,s,p;
int main()
{
    //freopen("DTTAMGIAC.inp","r",stdin);
    //freopen("DTTAMGIAC.out","w",stdout);
    cin>>a>>b>>c;
    p=(a+b+c)/2;
    s=sqrt(p*(p-a)*(p-b)*(p-c));
cout<<fixed<<setprecision(5)<<p*2<<endl;    

cout<<fixed<<setprecision(5)<<s;
    return 0;
}

 

Bình luận (0)
LT
Xem chi tiết
BH
Xem chi tiết
NT
30 tháng 10 2021 lúc 0:17

Câu 1: 

#include <bits/stdc++.h>

using namespace std;

double a,b,c;

int main()

{

cin>>a>>b>>c;

cout<<fixed<<setprecision(2)<<(a+b+c)/3;

return 0;

}

Bình luận (0)
DN
3 tháng 5 2024 lúc 11:14

nbbnbnbbnn\(\dfrac{^{ }}{ }\)

Bình luận (0)
AA
Xem chi tiết
HC
Xem chi tiết
RH
22 tháng 11 2021 lúc 23:11

Uses crt;

Var a, h:real;

Begin

Readln(a);

Readln(h);

Writeln(a*h/2);

Readln

End.

Bình luận (1)
AN
Xem chi tiết