Problem A: 调用函数,计算分段函数的值

Posted chenlong991223

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Problem A: 调用函数,计算分段函数的值相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
int sign(int n)//函数申明,定义函数 
{
    int m;
    if(n>0)
    m=1;
    if(n==0)
    m=0;
    if(n<0)
    m=-1;
    return m;//返回结果 
} 

int main(void)//主函数 
{
    int x,y;
    while(scanf("%d",&x)!=EOF)
    {
        y=sign(x);
        printf("%d
",y);
    }
    return 0; 
}

 

以上是关于Problem A: 调用函数,计算分段函数的值的主要内容,如果未能解决你的问题,请参考以下文章

[PTA]实验2-2-4 计算分段函数[2]

函数(Python)

百练8216-分段函数-2016正式A题

函数-循环-数组

PTA-2017实验2.2 计算分段函数

分段函数&数学函数