发布网友 发布时间: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;
}