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.
uses crt;
var x,y,z:real;
begin
clrscr;
write('Nhap x='); readln(x);
write('Nhap y='); readln(y);
z:=abs(1-sqr(x))+abs(1-sqr(y));
writeln('Z=',z:4:2);
readln;
end.
program tinhp;
uses crt;
var x,n,i: integer;
s: real;
begin
clrscr;
write('Nhap n:'); readln(n);
write('Nhap x:'); readln(x);
s:=sqrt(x);
for i:=1 to n do
s:= sqrt (x+s);
writeln('tong s=',s:6:2);
readln;
end.
1: tính tổng của \(S=1+\frac{1}{2^2}+\frac{1}{3^2}+\frac{1}{4^2}+...+\frac{1}{100^2}\)
uses crt;
var s:real;
i:integer;
begin
clrscr;
s:=0;
for i:=1 to 100 do
s:=s+1/(sqr(i));
writeln('tong cua day so la: ',s);
readln;
end.
2: tính tổng \(S=1+\frac{1}{3^2}+\frac{1}{5^2}+\frac{1}{7^2}+...+\frac{1}{n^2}\)
uses crt;
var s:real;
n,i:integer;
begin
clrscr;
write('n='); readln(n);
s:=0;
for i:=1 to n do
if i mod 2=1 then s:=s+1/(sqr(i));
writeln('tong cua day so la: ',s:4:2);
readln;
end.
1:
Biểu thức toán học: \(\frac{a+b}{a-b}\)
Biểu thức pascal: (a+b)/(a-b)
2:
Biểu thức toán học: \(S=pi.r^2\)
Biểu thức pascal: S=pi*sqr(r)
3:
Biểu thức toán học: \(V=\sqrt{2}GH\)
Biểu thức pascal: V=sqrt(2)*g*h
4:
Biểu thức toán học: \(\frac{\frac{4x^2+2y}{2-3a}}{4a+b}\)
Biểu thức pascal: (\(4\cdot x^2+2\cdot y\))/(2-3*a)/(4*a+b)
5:
Biểu thức toán học: \(\sqrt{3a+b}>5\left(a+b\right)^2\)
Biểu thức pascal:\(\sqrt{3\cdot a+b}>5\cdot\left(a+b\right)^2\)
6:
Biểu thức toán học: \(\frac{\frac{5a^2+b}{6-5a}}{6a+b}\)
Biểu thức pascal: (5*sqr(a)+b)/(6-5*a)/(6*a+b)
7:
Biểu thức toán học: \(\left|a+b\right|>0\)
Biểu thức pascal: abs(a+b)>0
8:
Biểu thức toán học: \(sin\left(x^2\right)+cos\left(x^2\right)=1\)
Biểu thức pascal: sin(sqr(x))+cos(sqr(x))=1
9:
Biểu thức toán học: \(\frac{x+y}{2z}\)
Biểu thức pascal: (x+y)/(2*z)
d: \(=\left|x-2y\right|+\left(x\cdot x\right)^2-2\cdot cos\left(x\right)\)