程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> using-如何判斷一個數是幾位數?不轉換成字符串也不循環還有其它做法麼?

using-如何判斷一個數是幾位數?不轉換成字符串也不循環還有其它做法麼?

編輯:編程綜合問答
如何判斷一個數是幾位數?不轉換成字符串也不循環還有其它做法麼?

這是我的程序,請大俠看看

 #include <iostream>

using namespace std;

int jiweishu(int n);

int main()
{
    int a;
    cin >> a;
    cout << jiweishu(a);
}

int jiweishu(int n)
{
    int ws = 0;
    while (n > 0)
    {
        n /= 10;
        ws++;
    }
    return ws;
}

最佳回答:


沒念過初中?不知道Log?

 #include <math.h>
#include <iostream>

using namespace std;

int jiweishu(int n);

int main()
{
    int a;
    cin >> a;
    cout << jiweishu(a);
}

int jiweishu(int n)
{
    return (int)log10(n) + 1;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved