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.

13 tháng 4 2018

Đáp án đúng : C

16 tháng 11 2021

Test 1: 

a=2; b=4

=>-2

Test 2: 

a=0; b=0;

=>Vô số nghiệm

10 tháng 10 2016

uses crt; 
var a, b: logint; 
Begin 
write('nhap so a ='); Readln(a); 
write('nhap so b ='); readln(b); 
If (a = 0 and b = 0) 
then write ('pt co nghiem x thuoc R') 
else 
if (a=0 and b#0) then write('pt vo nghiem') 
else 
write(nghiẹm la x=': -b/a); 
readln 
end. 

8 tháng 10 2016

uses crt; 
var a, b: logint; 
Begin 
write('nhap so a ='); Readln(a); 
write('nhap so b ='); readln(b); 
If (a = 0 and b = 0) 
then write ('pt co nghiem x thuoc R') 
else 
if (a=0 and b#0) then write('pt vo nghiem') 
else 
write(nghiẹm la x=': -b/a); 
readln 
end. 

uses crt; 
var a, b: logint; 
Begin 
write('nhap so a ='); Readln(a); 
write('nhap so b ='); readln(b); 
If (a = 0 and b = 0) 
then write ('pt co nghiem x thuoc R') 
else 

12 tháng 10 2021

tuy mk ngu pascal nhưng mk vẫn bt là bn lm sai r :)

Câu 1: 

uses crt;

var a,b:integer;

begin

clrscr;

readln(a,b);

write(a+b);

readln;

end.

Câu 2:

uses crt;

var a,b,c:integer;

begin

clrscr;

readln(a,b,c);

writeln(a+b-c);

readln;

end.

Câu 3: 

uses crt;

var a,b:integer;

begin

clrscr;

readln(a,b);

writeln(a-b);

readln;

end.

Câu 4: 

uses crt;

var x,y,z:integer;

begin

clrscr;

readln(x,y,z);

writeln((x+y)*z);

readln;

end.

#include <bits/stdc++.h>

using namespace std;

double b,c;

int main()

{

cin>>b>>c;

if ((b==0) and (c==0)) cout<<"Vo so nghiem";

else if ((b==0) and (c!=0)) cout<<"Vo nghiem";

else cout<<fixed<<setprecision(2)<<-c/b;

return 0;

}

#include <bits/stdc++.h>

using namespace std;

double b,c;

int main()

{

cin>>b>>c;

if ((b==0) and (c==0)) cout<<"Vo so nghiem";

else if ((b==0) and (c!=0)) cout<<"Vo nghiem";

else cout<<fixed<<setprecision(2)<<-c/b;

return 0;

}

#include <bits/stdc++.h>

using namespace std;

double b,c;

int main()

{

cin>>b>>c;

if ((b==0) and (c==0)) cout<<"Vo so nghiem";

else if ((b==0) and (c!=0)) cout<<"Vo nghiem";

else cout<<fixed<<setprecision(2)<<-c/b;

return 0;

}