当前位置: 首页 > 工具软件 > sign > 使用案例 >

sign函数的实现

越正阳
2023-12-01
#include<stdio.h>
int sign(int x);//sign函数
int main()
{
	int x=0;  //初始x值
	scanf("%d",&x);
	printf("sign(%d)=%d\n",x,sign(x));
	return 0;
}
int sign(int x)
{
	if(x>0)
		return 1;
	else if(x==0)//一定要是==
		return 0;
	else
		return -1;

}

 类似资料: