1016 部分A+B (15 分)
正整数 A 的“DA(为 1 位整数)部分”定义为由 A 中所有 DA 组成的新整数 PA。例如:给定 A=3862767,DA=6,则 A 的“6 部分”PA 是 66,因为 A 中有 2 个 6。
现给定 A、DA、B、DB,请编写程序计算 PA+PB。
输入格式:
输入在一行中依次给出 A、DA、B、DB,中间以空格分隔,其中 0<A,B<1010。
输出格式:
在一行中输出 PA+PB 的值。
输入样例 1:
3862767 6 13530293 3
输出样例 1:
399
输入样例 2:
3862767 1 13530293 8
输出样例 2:
0
实现
#include <iostream>
#include <string>
#include <cstring>
#include <math.h>
#include <algorithm>
using namespace std;
int getNum(string str,int key)
{
int len=strlen(str.c_str());
double sum=0;
int j=0;
for(int i=0;i<len;i++)
{
if(str[i]-'0'==key)
{
sum+=key*pow(10,j);
j++;
}
}
return sum;
}
int main(int argc, char* argv[])
{
string str1,str2;
int key1,key2;
cin>>str1>>key1>>str2>>key2;
cout<<getNum(str1,key1)+getNum(str2,key2);
return 0;
}
280

被折叠的 条评论
为什么被折叠?



