2014年6月4日 星期三


  1. //位數計算
  2. #include <iostream>  
  3. #include <cmath>  
  4. using namespace std;  
  5. int main()  
  6. {  
  7.     double a,b;  
  8.     while (cin >> a>>b)  
  9.     {  
  10.         cout << (int)(b*log10(a))+1 << endl;  
  11.     }  
  12.     return 0;  
  13. }  

沒有留言: