November 2018 1 12 Report
Mam napisać program na obliczanie wyrażenia z= \frac{4 \sqrt{ a^{3} } }{ \sqrt{4- a^{2} } } w C++

Napisałam taki oto program, ale wyskakuje błąd cały czas i nie liczy poprawnie #include<iostream>
#include<conio.h>
#include<math.h>
using namespace std;
main()
{
double a,z;

cout<<"Podaj a";

cin>>a;

if (a<0) cout<<"Błąd";

if (a=2) cout<<"Błąd";

if (4-a*a<0) cout<<"Błąd";

z=4sqrt(a*a*a)/sqrt(4-a*a);
cout<<"z="<<z<<endl;

cout<<"Koniec";
getch();
}
More Questions From This User See All

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.