标签:fun turn clu key 程序 bottom otto == uil
本题要求实现符号函数sign(x)。
int sign( int x );
其中x
是用户传入的整型参数。符号函数的定义为:若x
大于0,sign(x)
= 1;若x
等于0,sign(x)
= 0;否则,sign(x)
= −1。
#include <stdio.h>
int sign( int x );
int main()
{
int x;
scanf("%d", &x);
printf("sign(%d) = %d\n", x, sign(x));
return 0;
}
/* 你的代码将被嵌在这里 */
10
sign(10) = 1
1 int sign(int x){ 2 if(x>0) 3 return 1; 4 else if(x==0) 5 return 0; 6 else 7 return -1; 8 }
标签:fun turn clu key 程序 bottom otto == uil
原文地址:https://www.cnblogs.com/samgue/p/13179251.html