я кое что написал, но компилятор выдаёт ошибки, не знаю в чем проблема
задание 6:
#include
#include
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
float x, y, z;
cout<<"x=";
cin>>x;
cout<<"y=";
cin>>y;
z=(3x+2y)/(7*pow(x,2)+pow(y,2))*pow(y,x)*log10(3)*abs(x+y);
return 0;
}
задание 7:
#include
#include
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
float x, y, z, b, c;
cout<<"x=";
cin>>x;
cout<<"y=";
cin>>y;
cout<<"b=";
cin>>b;
cout<<"c";
cin>>c;
z=(3*x+2*y)/(pow(x,2)+pow(y,2))b*c
return 0;
}
