标签:包含 c++ include tps clu code == names its
一个整数“犯二的程度”定义为该数字中包含 \(2\) 的个数与其位数的比值。如果这个数是负数,则程度增加 \(0.5\) 倍;如果还是个偶数,则再增加 \(1\) 倍。例如数字 \(-13142223336\) 是个 \(11\) 位数,其中有 \(3\) 个 \(2\),并且是负数,也是偶数,则它的犯二程度计算为:\(\frac{3}{11} \times 1.5 \times 2 \times 100\%\),约为 \(81.82 \%\)。本题就请你计算一个给定整数到底有多二。
输入第一行给出一个不超过 \(50\) 位的整数 \(N\)。
在一行中输出 \(N\) 犯二的程度,保留小数点后两位。
-13142223336
81.82%
#include<bits/stdc++.h>
using namespace std;
char x;
double k=1;
int a,b;
int main()
{
while(cin>>x)
{
if(x==‘-‘){k*=1.5;continue;}
if(x==‘2‘)a++;
b++;
}
if(!((x^48)&1))k*=2;
cout<<fixed<<setprecision(2)<<a*1.0/b*k*100<<‘%‘<<endl;
return 0;
}
标签:包含 c++ include tps clu code == names its
原文地址:https://www.cnblogs.com/LengYun/p/13134901.html