#include<cstdio>
using namespace std;
int main(){
char A[20],DA,B[20],DB;
int AA=0,BB=0;
scanf("%s %c %s %c",A,&DA,B,&DB);
char *p=A;int pa=0,pb=0;
while(*p!=‘\0‘){
if(*p==DA) pa++;
p++;
}
p=B;
while(*p!=‘\0‘){
if(*p==DB) pb++;
p++;
}
for(int i=0;i<pa;i++){
AA=AA*10+DA-‘0‘;
}
for(int i=0;i<pb;i++){
BB=BB*10+DB-‘0‘;
}
printf("%d",AA+BB);
return 0;
}
原文地址:https://www.cnblogs.com/hebust/p/9498107.html
时间: 2024-11-10 13:05:23