\(\dfrac{x}{y}+\dfrac{4}...">
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.

12 tháng 5 2021

Câu 2:

Program nii;

Uses crt;

Var a,b,c,A:integer;

Begin

Write ('nhap a');

Readln (a);

Write ('nhap b');

Readln (b);

Write ('nhap c');

Readln (c);

A:=a;

If A<b then A:=b;

If A<c then A:=c;

Write ('Ket qua',A);

Readln;

End.

12 tháng 5 2021

Câu 1

Program ntg;

Uses crt;

Var A,x,y:integer;

Begin

Write ('nhap x');

Readln (x);

Write ('nhap y');

Readln ('y');

A:=x+y;

Write ('Ket qua',A);

Readln;

End.

 

16 tháng 2 2019

a. 5x3 + 2x2 - 18x + 25 = 5*x*x*x + 2*x*x - 18*x + 25

c. \(\dfrac{2a^2+2c^2-a}{4}\)=(2*a*a+2*c*c-a)/4

d. \(\dfrac{x+y}{x-y}\)=(x+y)/(x-y)

1 tháng 11 2021

C++ hay Pascal ạ

1 tháng 11 2021

pascal ạ

23 tháng 1 2019

var x,y,s: real;

begin;

Readln(x,y);

S:=(3*x*x*x*y-1/2*x*x+1/5*x*y)*6*x*y*y*y;

Write ('Tong gia tri =' , s:2:1);

Readln;

End.

23 tháng 1 2019

Program CT_2;

Uses Crt;

Var x, y, P: Integer;

Begin

Clrscr;

Writeln('Nhap x, y = ');

Readln(x,y);

P:= (3*x*x*x*y - 1/2*Sqr(x) + 1/5*x*y)*6*x*y*y*y;

Writeln('Vay tich cua bieu thuc la = ',P:0:1);

Readln;

End.

21 tháng 10 2021

#include <bits/stdc++.h>

using namespace std;

long long a,b;

int main()

{

cin>>a>>b;

cout<<fixed<<setprecision(2)<<1/(a*1.0+b*1.0);

return 0;

}

8 tháng 12 2021

Bài 1.

a)\(ax^2+bx+c\Rightarrow\)a*x*x+b*x+c

b)\(\dfrac{a-b}{c-d}+a^2\Rightarrow\) (a-b)/(c-d)+a*a

17 tháng 4 2018

program tinhp;

uses crt;

var x,n,i: integer;

s: real;

begin

write('Nhap n:');

readln(n);

write('Nhap x:');

readln(x);

s: sqrt(x);

for i:=1 to do s:= sqrt (x+s);

write('tong s=',s:6:2);

readln;

end.