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.

11 tháng 11 2019

mong mọi người giúp đỡ

11 tháng 11 2019
Program GIAI_PHUONG_TRINH_BAC_NHAT; Uses crt; Var b,c,x: real; Begin Clrscr; Writeln('GIAI PHUONG TRINH BAC NHAT: BX + C=0'); Writeln('------------------------------------------------------------'); Write ('Nhap b= '); readln(b); Write ('Nhap c= '); readln(c); If(b=0) then If(c=0) then Writeln(' Phuong trinh co vo so nghiem') Else writeln(' Phuong tring vo nghiem') Else Writeln('Phuong trinh co nghiem x=',-c/b: 4: 2); Readln; End.
17 tháng 7 2018

Đáp án đúng : B

#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;

}

13 tháng 4 2018

Đáp án đúng : C

29 tháng 1 2023

import math

a = float(input("Nhập a: "))
b = float(input("Nhập b: "))
c = float(input("Nhập c: "))

d = b**2 - 4*a*c

if d > 0:
    x1 = (-b + math.sqrt(d)) / (2*a)
    x2 = (-b - math.sqrt(d)) / (2*a)
    print("Phương trình có hai nghiệm: x1 =", x1, "và x2 =", x2)
elif d == 0:
    x = -b / (2*a)
    print("Phương trình có nghiệm kép: x =", x)
else:
    print("Phương trình không có nghiệm thực."

2 tháng 2 2023

Em cảm ơn ạ!!

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 :)

21 tháng 10 2021

Câu 1: 

#include <bits/stdc++.h>

using namespace std;

double a,b,c;

int main()

{

cin>>a>>b>>c;

cout<<fixed<<setprecision(2)<<a*b*c;

return 0;

}

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.

1:

uses crt;

var n,i,t:integer;

begin

clrscr;

readln(n);

t:=0;

for i:=1 to n do

t:=t+i*i;

write(t);

readln;

end.

4 tháng 4 2023

2

program bt2;

var i,n,t:integer;

begin

readln(n);

s:=0;

for i:=1 to n do

if i mod 2 = 1 then s:=s+i;

readln;

end.