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

刷题遇到的各种 之 绝对值

时间:2019-10-06 13:35:48      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:ack   color   strong   clu   自带   else   int   abs   style   

方法一:用C语言中自带的绝对值函数表示:

如果a是整数   abs()   

#include<stdio.h>
#include<math.h>
int a=100,b;
b=abs(a);
printf("%d",b);

 

如果a是浮点数:    double型     fabs()  

#include<stdio.h>
#include<math.h>
float a=99.9float b;
b=fabs(a);
printf("%f",b);

  

方法二:自己编写一个函数表示:

#include <stdio.h>
int abs(int t)
{
    if (t>0)
        return t;
    else
        return -t;
}
int main()
{
    int t = 0;
    scanf("%d",&t);
    printf("%d",abs(t));
    return 0;
}

 

刷题遇到的各种 之 绝对值

标签:ack   color   strong   clu   自带   else   int   abs   style   

原文地址:https://www.cnblogs.com/expedition/p/11626847.html

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