gpt4 book ai didi

c++ - 绝对值/减法

转载 作者:行者123 更新时间:2023-11-28 05:50:18 27 4
gpt4 key购买 nike

我正在尝试解决一个问题:

编写一个程序计算非负整数之间的差值。

输入:

输入的每一行都由一对整数组成。每个整数都在 0 到 10 之间提高到 15(含)。输入在文件末尾终止。

输出:

对于输入中的每一对整数,输出一行,包含它们差的绝对值。

这是我的解决方案:

#include <iostream>
#include <cmath>
using namespace std;

int main(){
int x;
int y;
int z;

cin >> x >> y;

if(x && y <= 1000000000000000){
z=x-y;
cout << std::abs (z);
}
}

但问题是我的答案错了,请帮我更正我的答案并解释为什么错了。

最佳答案

对于初学者来说,int 类型对象的有效值范围通常小于 1000000000000000。您应该使用足够宽的整数类型来存储这么大的值。合适的类型是 unsigned long long int,因为根据赋值,输入的值是非负数。

否则,您还需要检查这些值是否不是大于或等于零的负数。

还有if语句中的条件

if(x && y <= 1000000000000000){

错了。相当于

if(x && ( y <= 1000000000000000 )){

反过来等同于

if( ( x != 0 ) && ( y <= 1000000000000000 )){

不一样

if ( ( x <= 1000000000000000 ) && ( y <= 1000000000000000 ) ){

程序可以如下所示

#include <iostream>

int main()
{
const unsigned long long int UPPER_VALUE = 1000000000000000;
unsigned long long int x, y;

while ( std::cin >> x >> y )
{
if ( x <= UPPER_VALUE && y <= UPPER_VALUE )
{
std::cout << "The difference between the numbers is "
<< ( x < y ? y - x : x - y )
<< std::endl;
}
else
{
std::cout << "The numbers shall be less than or equal to "
<< UPPER_VALUE
<< std::endl;
}
}
}

如果例如输入这些值

1000000000000000 1000000000000000 
1000000000000001 1000000000000000
1 2

然后程序输出看起来像

The difference between the numbers is 0
The numbers shall be less than or equal to 1000000000000000
The difference between the numbers is 1

关于c++ - 绝对值/减法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35389591/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com