Что не так в коде?
#include
#include
#using namespace stdio;
intmain() {
double t,f,k,x,c,y,z,b;
cout<<"t=";
cin<
cout<<"f=";
cin<
cout<<"k";
cin<
c=sqrt(t+1);
y=(0.2z^(x)+0.5x)/(ln^(2)|c-b^(k)|);
z=2c^(3)+b;
b=0.7^(2)+f;
cout<<"c="<
cout<<"y="<
cout<<"z="<
cout<<"b="<
return 0; }
Answers & Comments
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double t,f,k,x,c,y,z,b;
cout<<"t=";
cin >> t;
cout<<"f=";
cin >> f;
cout<<"k=";
cin >> k;
c=sqrt(t+1);
b=0.7*0.7+f;
z=2*c*c*c+b;
y=(0.2*pow(z,x)+0.5*x)/(log(c-b)*log(c-b));
cout<<"c="<< c <<endl;
cout<<"y="<< y <<endl;
cout<<"z="<< z <<endl;
cout<<"b="<< b <<endl;
return 0;
}