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

C++中,编写函数,输入一个整数,利用指针返回该数的绝对值?

C++中,编写函数,输入一个整数,利用指针返回该数的绝对值?

PHP
茅侃侃 2019-02-27 11:07:45
查看完整描述

3 回答

?
GCT1015

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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

#include <stdio.h>

int mabs(int a, int *p)

{

    if(!p)return -1;

    if(a>0)*p=a;

    else *p=-a;

    return 0;

}

int main()

{

    int a, b;

    scanf("%d", &a);

    mabs(a, &b);

    printf("%d\n", b);

    return 0;

}


查看完整回答
反对 回复 2019-03-30
?
慕的地8271018

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

int f (int a, int b)
{
return 0;

}

int (*Test ()) (int, int)
{
return f;
}



查看完整回答
反对 回复 2019-03-30
?
慕沐林林

TA贡献2016条经验 获得超9个赞

#include<iostream>

#include<cmath>

using namespace std;

int main()

{int i,n;

 cin>>n;

 cout<<abs(n)<<endl;

 return 0;

}


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

添加回答

举报

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