mam napisać program w C++ żeby oblicz objętość i pole powierzchni prostopadłościanu!!!
proszę jak najszybciej!!!
#include<iostream.h>float a,b,c,d,e;float y(float x){ return (a*x*x*x*x+b*x*x*x+c*x*x+d*x+e);}main(){ float x,x1,x2,dx,pc; int n=10000; cout<<"podaj A:"<<endl; cin>>a; cout<<"podaj B:"<<endl; cin>>b; cout<<"podaj C:"<<endl; cin>>c; cout<<"podaj D:"<<endl; cin>>d; cout<<"podaj E:"<<endl; cin>>e; cout<<"podaj x1:"<<endl; cin>>x1; cout<<"podaj x2:"<<endl; cin>>x2; pc=0; dx=(x2-x1)/n; for(int i=0;i<n;i++) { x=x1+i*dx; pc=pc+dx*y(x); cout<<pc<<endl; } cout<<"pole= "<<pc<<endl<<"Aby zamknac nacisnij enter :)"<<endl; getchar(); getchar(); }
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include<iostream.h>
float a,b,c,d,e;
float y(float x)
{
return (a*x*x*x*x+b*x*x*x+c*x*x+d*x+e);
}
main()
{
float x,x1,x2,dx,pc;
int n=10000;
cout<<"podaj A:"<<endl;
cin>>a;
cout<<"podaj B:"<<endl;
cin>>b;
cout<<"podaj C:"<<endl;
cin>>c;
cout<<"podaj D:"<<endl;
cin>>d;
cout<<"podaj E:"<<endl;
cin>>e;
cout<<"podaj x1:"<<endl;
cin>>x1;
cout<<"podaj x2:"<<endl;
cin>>x2;
pc=0;
dx=(x2-x1)/n;
for(int i=0;i<n;i++)
{
x=x1+i*dx;
pc=pc+dx*y(x);
cout<<pc<<endl;
}
cout<<"pole= "<<pc<<endl<<"Aby zamknac nacisnij enter :)"<<endl;
getchar();
getchar();
}