#include
#include
#include
#include
#include
using namespace std ;
int main()
{
double a,b,c,ln,x,y=1;
double z;
cout<<endl<<"Enter a:"<>a;
cout<<endl<<"Enter b:"<>b;
for(x=1; ;x++) {
c=cos(a*a*x);
ln=log(b*x-a);
z=c/ln;
cout<<endl<<"Z["<<y<<"]="<<z<=13) {
system("pause");
return 0;
}
y++;
}
}
выдает такую ошибку
main.cpp:29:7: error: no match for 'operator>>' (operand types are 'std:stream {aka std::basic_ostream}' and 'double')
#include
#include
#include
#include
using namespace std ;
int main()
{
double a,b,c,ln,x,y=1;
double z;
cout<<endl<<"Enter a:"<>a;
cout<<endl<<"Enter b:"<>b;
for(x=1; ;x++) {
c=cos(a*a*x);
ln=log(b*x-a);
z=c/ln;
cout<<endl<<"Z["<<y<<"]="<<z<=13) {
system("pause");
return 0;
}
y++;
}
}
выдает такую ошибку
main.cpp:29:7: error: no match for 'operator>>' (operand types are 'std:stream {aka std::basic_ostream}' and 'double')