y=f(x)=1/x,x≠0 0,x=0 编程,计算输出上面分段函数f(x)值用c++语言
发布网友
发布时间:2024-10-23 23:36
我来回答
共1个回答
热心网友
时间:2024-10-30 16:18
#include<iostream>
using namespace std;
void main()
{
double x,y;
cin>>x;
if(x>0||x<0)
{
y=1.0/x;
}
else
y=0;
cout<<y<<endl;
}
热心网友
时间:2024-10-30 16:21
#include<iostream>
using namespace std;
void main()
{
double x,y;
cin>>x;
if(x>0||x<0)
{
y=1.0/x;
}
else
y=0;
cout<<y<<endl;
}