码迷,mamicode.com
首页 > 其他好文 > 详细

习题5-1 符号函数 (10分)

时间:2020-06-22 23:24:31      阅读:182      评论:0      收藏:0      [点我收藏+]

标签: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 }

 

习题5-1 符号函数 (10分)

标签:fun   turn   clu   key   程序   bottom   otto   ==   uil   

原文地址:https://www.cnblogs.com/samgue/p/13179251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!