oj---pat---b1016
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oj---pat---b1016相关的知识,希望对你有一定的参考价值。
#include<cstdio> int process(int n,int d){ int res=0; while(n!=0){ if(n%10==d) res=res*10+n%10; n/=10; } return res; } int main(){ int a,da,b,db,pa,pb; while(scanf("%d %d %d %d",&a,&da,&b,&db)!=EOF){ pa=process(a,da); pb=process(b,db); printf("%d\n",pa+pb); } return 0; }
以上是关于oj---pat---b1016的主要内容,如果未能解决你的问题,请参考以下文章