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â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.
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.
#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;
}
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
program tinh;
uses crt;
var a;b:integer;
C:real;
begin
clrscr;
write('ban hay nhap so nguyen a,a='); read(a);
write('ban hay nhap so nguyen b,b='); read(b);
C=a*b/2;
write('gia tri bieu thuc C la,C=',C);
delay(5000);
end.