August 2018 2 8 Report
Mam problem z dev c++ muszę obliczyć w nim pole trókąta wzorem Herona.
Napisałam coś ale nie chce mi skompilować ;/ pomocy u spodu daje to co napisałam w tym programie. Z góry dziękuje za pomoc ;)

#include <cstdlib>
#include <iostream>

using namespace std;
int main()
{
float a,b,c;
cout<<"podaj a=";
cin>>a;
cout<<"podaj b=";
cin>>b;
cout<<"podaj c=";
cin>>c;
if (a+b<=c || a+c<=b || c+b<=a)
cout<<"z tych ocinkow nie da sie zbudowac prostokata";
else
float p=(a+b+c)/2;
cout<<"pole trojkata wynosi="<<sqrt(p*(p-a)*(p-b)*(p-c));
}

cin.ignore();
getchar();
return 0;

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 - 2025 KUDO.TIPS - All rights reserved.