![](https://rs.olm.vn/images/avt/0.png?1311)
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.
LH
1
![](https://rs.olm.vn/images/avt/0.png?1311)
Các câu hỏi dưới đây có thể giống với câu hỏi trên
![](https://rs.olm.vn/images/avt/0.png?1311)
20 tháng 10 2021
2:
#include <bits/stdc++.h>
using namespace std;
double xm,ix,iy,r,ma,mb;
int main()
{
cin>>ix>>iy;
cin>>r;
cin>>ma>>mb;
xm=sqrt((ix-ma)*(ix-ma)+(iy-mb)*(iy-mb));
if (xm==r) cout<<"phai";
else cout<<"khong phai";
return 0;
}
![](https://rs.olm.vn/images/avt/0.png?1311)
19 tháng 10 2021
#include <bits/stdc++.h>
using namespace std;
long long n,i,x,t;
int main()
{
cin>>n;
t=0;
for (i=1; i<=n;i++)
{
cin>>x;
if (x%3==0) t=t+x;
}
cout<<t;
return 0;
}
NS
1
![](https://rs.olm.vn/images/avt/0.png?1311)
20 tháng 5 2022
uses crt;
var x,y:integer;
begin
clrscr;
readln(x,y);
writeln(2*x*x+y);
readln;
end.
Bạn phải khi rõ biểu thức nhé
Ý bạn là \(Q=\frac{x^3-y^3}{xy}\) hay là \(Q=x^3-\frac{y^3}{xy}\)?