其他分享
首页 > 其他分享> > AcWing 810. 绝对值

AcWing 810. 绝对值

作者:互联网

文章目录


AcWing 810. 绝对值

本题链接:AcWing 810. 绝对值

本博客给出本题截图
在这里插入图片描述

AC代码

代码

#include <iostream>

using namespace std;

int abs(int x)
{
    if (x > 0) return x;
    return -x;
}

int main()
{
    int x;
    cin >> x;
    cout << abs(x) << endl;

    return 0;
}

标签:AC,return,int,绝对值,810,AcWing
来源: https://blog.csdn.net/qq_52156445/article/details/120685594