给定数字的大小意味着该特定数字之间的差异
和零。它还可以表示一个数学对象相对于该数学对象中其他对象的大小
同种。我们将遵循这里的第一个定义,以及大小或绝对值
数字的表示为 |x|,其中 x 是实数。我们探索展示的方式
给定实数的绝对值或大小。
朴素方法
我们可以自己编写一个程序来找出给定实数的大小。这
下面解释了示例。
语法
int value;
if (value < 0) {
value = (-1) * value;
}
登录后复制
算法
- 在数值变量(整数/双精度)中获取输入。
- 如果数字
- 数字 := 数字 * (-1)
- 否则,
- 按原样返回号码。
示例
#include
using namespace std;
// finds the magnitude value of a given number
int solve(int value){
// if smaller than zero, then multiply by -1; otherwise return the number itself
if (value < 0) {
value = (-1) * value;
}
// return the magnitude value
return value;
}
int main(){
int n = -19;
//display the number and its magnitude
cout