gpt4 book ai didi

c++ - 如何判断数字是否有从右到左升序排列的数字

转载 作者:太空狗 更新时间:2023-10-29 21:35:43 26 4
gpt4 key购买 nike

我需要确定输入的数字是否有从右到左升序排列的数字。

我的代码似乎不能正常工作

这是我的代码:

int n, temp;
cout << "Please enter number: ";
cin >> n;
bool ascending = true;
temp = n%10;

while (n>0)
{
n /= 10;
if (temp < n % 10)
{
ascending = false;
}
}

if (ascending)
{
cout << "Number is ascending";
}
else {
cout << "Number is not ascending";
}

最佳答案

您不会在每次迭代后更新 temp 的值

int n, temp;
cout << "Please enter number: ";
cin >> n;
bool ascending = true;
temp = n%10;

while (n / 10 > 0)
{
n /= 10;
if (temp > n % 10)
{
ascending = false;
break;
}
temp = n % 10;
}

if (ascending)
{
cout << "Number is ascending";
}
else {
cout << "Number is not ascending";
}

关于c++ - 如何判断数字是否有从右到左升序排列的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41649718/

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