K
Khách
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.
Các câu hỏi dưới đây có thể giống với câu hỏi trên
LM
0
QN
0
NV
1
21 tháng 12 2021
#include <bits/stdc++.h>
using namespace std;
double a,b,tb;
int main()
{
cin>>a>>b;
tb=(a+b)/2;
cout<<fixed<<setprecsion(1)<<tb;
return 0;
}
14 tháng 4 2022
#include <bits/stdc++.h>
using namespace std;
long long i;
int main()
{
for (i=20; i>=15; i--) cout<<i<<" ";
return 0;
}
em sắp tiêu rồi ạ huhuh
1:
#include <bits/stdc++.h>
using namespace std;
double a,b;
int main()
{
cin>>a>>b;
cout<<fixed<<setprecision(2)<<2*(a+b)<<endl;
cout<<fixed<<setprecision(2)<<a*b;
return 0;
}