1016. 部分A+B (15)
Posted 葛杨杨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1016. 部分A+B (15)相关的知识,希望对你有一定的参考价值。
时间限制 1000 ms 内存限制 32768 KB 代码长度限制 100 KB 判断程序 Standard (来自 小小)
题目描述
正整数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的值。
输入例子:
3862767 6 13530293 3
输出例子:
399
#include<stdio.h> #include<string.h> int main(){ char a[]="2863767"; char b[]="13530293"; char da=‘6‘,db=‘3‘; int suma=0; int sumb=0; scanf("%s %c %s %c",a,&da,b,&db); for(int i=0;i<strlen(a);i++){ if(a[i]==da){ suma=suma*10+(da-‘0‘); } } for(int i=0;i<strlen(b);i++){ if(b[i]==db){ sumb=sumb*10+(db-‘0‘); } } printf("%d",suma+sumb); return 0; }
以上是关于1016. 部分A+B (15)的主要内容,如果未能解决你的问题,请参考以下文章