标签:long clu lis space set text 格式 highlight while
正整数 A 的“D?A??(为 1 位整数)部分”定义为由 A 中所有 D?A?? 组成的新整数 P?A??。例如:给定 8,D?A??=6,则 A 的“6 部分”P?A?? 是 66,因为 A 中有 2 个 6。
现给定 A、D?A??、B、D?B??,请编写程序计算 P?A??+P?B??。
输入在一行中依次给出 A、D?A??、B、D?B??,中间以空格分隔,其中 0。
在一行中输出 P?A??+P?B?? 的值。
3862767 6 13530293 3
399
3862767 1 13530293 8
0
#include <iostream> #include <cstdio> using namespace std; int main() { long long int a, da, b, db, d, result1 = 0, result2 = 0; scanf("%lld %lld %lld %lld", &a, &da, &b, &db); while(a != 0) { d = a % 10; if(d == da) { result1 = result1 * 10 + d; } a /= 10; } while(b != 0) { d = b % 10; if(d == db) { result2 = result2 * 10 + d; } b /= 10; } printf("%lld\n", result1 + result2); return 0; }
标签:long clu lis space set text 格式 highlight while
原文地址:https://www.cnblogs.com/mjn1/p/10853240.html