Koeffitsiyentlari a=4, b= 6, c=-2 bo’lgan kvadrat tenglama ildizlari topilsin; Tomonlari a=8, b=16, c=9 bo’lgan uchburchak yuzi topilsin.
1. Koeffitsiyentlari a=4, b= 6, c=-2 bo’lgan kvadrat tenglama ildizlari topilsin;
Kod qisim:
#include
#include
#include
using namespace std;
int main()
{
float a=4,b=6,c=-2,x1,x2,D=0;
D=pow(b,2)-4*a*c;
if(D>0||D==0)
{ x1=(-b+sqrt(D))/(2*a);
x2=(-b-sqrt(D))/(2*a);
cout<<"X1="<}
else
{
cout<<"Bo`sh to`plam";
}
system("pause");
return 0;
}
Natija:
2.Tomonlari a=8, b=16, c=9 bo’lgan uchburchak yuzi topilsin.
Kod qisim:
#include
#include
#include
using namespace std;
int main()
{float a=8,b=16,c=9,s,g;
if(a+b>c && a+c>b && b+c>a) {
float g=(a+b+c)/2;
s=sqrt(g*(g-a)*(g-b)*(g-c));
cout<<"Javob: "<
system("pause");
return 0;
}
Natija:
Do'stlaringiz bilan baham: |