近似模拟_百炼 计算对数 2739(换底公式的应用)

 1 #define _CRT_SECURE_NO_WARNINGS  
 2 #include <stdio.h>
 3 #include <math.h>
 4 #include <algorithm>
 5 #include <stdlib.h>
 6 #include <vector>
 7 #include <map>
 8 #include <queue>
 9 #include <string>
10 #include <iostream>
11 #include <ctype.h>
12 #include <string.h>
13 #include <set>
14 #include <stack>
15 #include<functional>
16 using namespace std;
17 #define Size 105
18 #define maxn  1<<30
19 #define minn  1e-6
20 char str1[Size], str2[Size];
21 
22 int main(){
23     memset(str1, 0, sizeof(str1));
24     memset(str2, 0, sizeof(str2));
25     scanf("%s%s", str1, str2);
26     int len1 = strlen(str1);
27     int len2 = strlen(str2);
28     for (int i = 0; i < 6; i++)
29     {
30         if (str1[i] == '\0') str1[i] = '0';
31         if (str2[i] == '\0') str2[i] = '0';
32     }
33     str1[6] = str2[6] = 0;
34     /*
35     求loga(b) = log10b/log10a
36     log10b 的近似值是 lenstrb-1+log10(atoi(str2) / 1e5)  后面的那么多位数不用看了
37     */
38     printf("%d\n", int((log10(atoi(str2) / 1e5) + len2 - 1) / (log10(atoi(str1) / 1e5) + len1 - 1)));
39     //注意是除过以后再取整而不是取整以后再除
40     system("pause");
41 }

 

转载于:https://www.cnblogs.com/MapReduce/p/8391030.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值