为了账号安全,请及时绑定邮箱和手机立即绑定

c语言.定义一个函数,用于求整数绝对值,然后在主函数中调用?

c语言.定义一个函数,用于求整数绝对值,然后在主函数中调用?

PHP
子衿沉夜 2019-02-26 07:07:23
c语言.定义一个函数,用于求整数绝对值,然后在主函数中调用
查看完整描述

3 回答

?
波斯汪

TA贡献1811条经验 获得超4个赞

1

2

3

4

5

6

7

8

9

10

11

12

13

#include <stdio.h>

int abs(int a)

{

    if(a>0)return -a;

    return a;

}

int main()

{

    int a;

    scanf("%d", &a);

    printf("%d\n", abs(a));

    return 0;

}


查看完整回答
反对 回复 2019-03-30
?
幕布斯7119047

TA贡献1794条经验 获得超8个赞

#include<stdio.h>
#include<math.h>
int main()
{
int a,b,c,mean;
printf("请输入三个整数,用空格间隔,求三个整数绝对值的平均值\n");
scanf("%d%d%d",&a,&b,&c);
a=abs(a);
b=abs(b);
c=abs(c);
mean=(a+b+c)/3;
printf("mean=%d",mean);
return 0;
}



查看完整回答
反对 回复 2019-03-30
  • 3 回答
  • 0 关注
  • 1021 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信