本文主要是介绍问题 H: 部分A+B (15) Codeup ContestID:100000575,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目链接:http://codeup.cn/problem.php?cid=100000575&pid=7
题目描述
正整数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 < 10^10。
输出
在一行中输出PA + PB的值。
样例输入
3862767 6 13530293 3
3862767 1 13530293 8
样例输出
399
0
代码
#include<stdio.h>
#include<string.h>
#include<math.h>int comput(char c[], int d){int l = strlen(c);int t = 0, sum = 0;for(int i = 0; i < l; i++) {if((c[i] - '0') == d) {sum += d * pow(10.0, t);t++;}}return sum;}int main() {char A[100], B[100];int Da, Db;while(scanf("%s %d %s %d", A, &Da, B, &Db) != EOF){int Pa = comput(A, Da);int Pb = comput(B, Db);printf("%d\n", Pa + Pb);}return 0;}
这篇关于问题 H: 部分A+B (15) Codeup ContestID:100000575的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!