#include"stdio.h"
void main()
{
int x;
printf(“please input the x:\n”);
scanf(“x=%d”,&x);
if(x==0)
printf(“y=0\n”);
else
printf(“y=%f\n”,1.0/x);
}
#include"stdio.h"
void main()
{
int x;
printf(“please input the x:\n”);
scanf(“x=%d”,&x);
if(x==0)
printf(“y=0\n”);
else
printf(“y=%f\n”,1.0/x);
}