Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
TK
program bt;
uses crt;
var a,b,S,P:real;
begin
clrscr;
writeln('hay nhap chieu dai hinh chu nhat: ');readln(a);
writeln('hay nhap chieu rong hinh chu nhat: ');readln(b);
S:=a*b;
P:=(a+b)*2;
writeln('dien tich hinh chu nhat la: ',S);
writeln('chu vi hinh chu nhat la: ',P);
readln;
end.
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;
}
#include <bits/stdc++.h>
using namespace std;
double a,b;
int main()
{
cin>>a>>b;
cout<<"Chu vi la: "<<fixed<<setprecision(2)<<(a+b)*2<<endl;
cout<<"Dien tich la: "<<fixed<<setprecision(2)<<a*b;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int a,b,dt;
int main()
{
cout<<"Nhap chieu dai: ";
cin>>a;
cout<<"Nhap chieu rong: ";
cin>>b;
dt=a*b;
cout<<"Dien tich la: "<<dt;
Return 0;
}
Program Chu_nhat;
uses crt;
var a,b:integer;
Begin
clrscr;
write('Nhap a, b: ');readln(a,b);
writeln('Chu vi cua hinh chu nhat la: ',(a+b)*2);
readln;
end.
c:
#include <bits/stdc++.h>
using namespace std;
double a,b;
int main()
{
cin>>a>>b;
cout<<a*b;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
double a,b;
int main()
{
cin>>a>>b;
cout<<fixed<<setprecision(2)<<a*b;
return 0;
}
Cảm ơn nhen