gpt4 book ai didi

c++ - 使用 while 循环计算数字

转载 作者:可可西里 更新时间:2023-11-01 18:08:28 33 4
gpt4 key购买 nike

我最近在制作一个程序,需要检查用户输入的数字中的位数。结果我做了以下代码:

int x;    
cout << "Enter a number: ";
cin >> x;
x /= 10;
while(x > 0)
{
count++;
x = x/10;
}

据我所知(即使我的经验有限)它看起来很粗糙而且相当不优雅。

有没有人知道如何改进此代码(同时不使用内置的 C++ 函数)?

最佳答案

在您的特定示例中,您可以将数字作为字符串读取并计算字符数。

但对于一般情况,您可以按照自己的方式进行,也可以使用以 10 为底的对数。

这是对数示例:

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
double n;
cout << "Enter a number: ";
cin >> n;

cout << "Log 10 is " << log10(n) << endl;
cout << "Digits are " << ceil(log10(fabs(n)+1)) << endl;
return 0;
}

关于c++ - 使用 while 循环计算数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6601592/

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