Cho S = a/b + c/d ( a,b,c,d nhập từ bàn phím ) lập trình tính tổng S trên
2 câu trả lời
uses crt;
var a,b,c,d:integer;
begin
clrscr;
write('Nhap a='); readln(a);
write('Nhap b='); readln(b);
write('Nhap c='); readln(c);
write('Nhap d='); readln(d);
if (b<>0) and (d<>0) then writeln(a/b+c/d:4:2)
else writeln('Vui long nhap lai');
readln;
HẾT