码迷,mamicode.com
首页 > 其他好文 > 详细

big number

时间:2015-02-02 12:11:59      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:

//题意 求阶乘的位数。这么机智的做法肯定不是我自己想的o(╯□╰)o

 

Problem Description

In many applications very large integers numbers are required. Some of these applications are using keys for secure transmission of data, encryption, etc. In this problem you are given a number, you have to determine the number of digits in the factorial of the number.

 

 

Input

Input consists of several lines of integer numbers. The first line contains an integer n, which is the number of cases to be tested, followed by n lines, one integer 1 ≤ n ≤ 107 on each line.

 

 

Output

The output contains the number of digits in the factorial of the integers appearing in the input.

 

 

Sample Input

2

10

20

 

 

Sample Output

7

19

 

 1 #include<stdio.h>
 2 
 3 #include<math.h>
 4 
 5 int main()
 6 
 7 {
 8 
 9 int t,n,i;
10 
11 double result;
12 
13 scanf("%d",&t);
14 
15 while(t--)
16 
17 {
18 
19 result=0;
20 
21 scanf("%d",&n);
22 
23 for(i=1;i<=n;i++)
24 
25 {
26 
27 result+=(log10(i));//这个!
28 
29 }
30 
31 printf("%d\n",(int)result+1);
32 
33 }
34 
35 return 0;
36 
37 }

 

big number

标签:

原文地址:http://www.cnblogs.com/awsent/p/4267100.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!