题解 | #计算单位阶跃函数#

计算单位阶跃函数

https://www.nowcoder.com/practice/0b23793ae48a4e6cb7dfff042c959a04

#include <stdio.h>

int main() {
    float input = 0;

    while (scanf("%f",&input) != EOF)
    {
        if(input > 0)
        {
            printf("%d\n",1);
        }
        else if (input < 0)
        {
            printf("%d\n",0);
        }
        else 
        {
            printf("%.1f\n",0.5);
        }
    }
    return 0;
}

全部评论

相关推荐

算法冲刺中:kpi面加一,面完完全没动静,感谢信都没有
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务