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.
1:
#include <bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
cin>>a>>b;
cout<<a+b;
return 0;
}
2:
#include <bits/stdc++.h>
using namespace std;
double s,r;
int main()
{
cin>>r;
s=r*r*pi;
cout<<fixed<<setprecision(2)<<s;
return 0;
}
2:
#include <bits/stdc++.h>
using namespace std;
int main()
{
string st;
int a;
cin>>st;
cin>>a;
cout<<"Xin chao "<<st<<endl;
cout<<"Nam nay "<<st<<" "<<2021-a<<" tuoi";
return 0;
}
Viết chương trình nhập vào một mảng hai chiều gồm các số thức Tính tổng các số trên đường chéo chính
uses crt;
var a:array[1..100,1..100]of integer;
i,n,m,j,t:integer;
begin
clrscr;
readln(n,m);
for i:=1 to n do
for j:=1 to m do
begin
readln(a[i,j]);
end;
t:=0;
for i:=1 to n do
for j:=1 to m do
if i=j then t:=t+a[i,j];
writeln(t);
readln;
end.
Câu 3:
#include <bits/stdc++.h>
using namepsace std;
double a,b,c,p,s;
int main()
{
cin>>a>>b>>c;
p=(a+b+c)/2;
s=sqrt(p*(p-a)*(p-b)*(p-c));
cout<<fixed<<setprecision(2)<<s;
return 0;
}
Câu 3:
#include <bits/stdc++.h>
using namepsace std;
double a,b,c,p,s;
int main()
{
cin>>a>>b>>c;
p=(a+b+c)/2;
s=sqrt(p*(p-a)*(p-b)*(p-c));
cout<<fixed<<setprecision(2)<<s;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
double a;
cin>>a;
cout<<a*4<<endl;
cout<<a*a<<endl;
cout<<a*sqrt(2)<<endl;
return 0;
}