当前位置: 首页 > 工具软件 > abs > 使用案例 >

abs c++

范弘亮
2023-12-01

abs:abs是一个数的绝对值,比如:abs(-5)=5,abs(5)=5 (abs的绝对值对正整数是没有效果的)

下面是abs的代码应用:

#include <bits/stdc++.h>	//如果不是我这样的万能头文件是需要加<cmath>或<math.h>的头文件 
using namespace std;
int main()
{
	int n;
	cin>>n;
	cout<<abs(n)<<endl;
	return 0;
}

 类似资料:

相关阅读

相关文章

相关问答