永发信息网

c++一道基础题

答案:1  悬赏:30  手机版
解决时间 2021-05-15 22:11
  • 提问者网友:寂寞撕碎了回忆
  • 2021-05-15 01:27

#include<iostream>
#include<cmath>
int main()
{double x;
cout<<"please input x";
cin>>x;
cout<<"y="<<sqrt(pow(sin(x),2.5));
return 1;}

哪错了

最佳答案
  • 五星知识达人网友:骨子里都是戏
  • 2021-05-15 03:01

#include<iostream>
#include<cmath>
using namespace std; //缺少命名空间.


int main()
{
double x;
cout<<"please input x";
cin>>x;
cout<<"y="<<sqrt(pow(sin(x),2.5));
return 1;
}


我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯