PAT乙级1016

题目链接

https://pintia.cn/problem-sets/994805260223102976/problems/994805306310115328

题解

很简单,遍历两个字符串,找到da或db,然后不断更新pa和pb即可。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// PAT BasicLevel 1016
// https://pintia.cn/problem-sets/994805260223102976/problems/994805306310115328

#include <iostream>
#include <string>
using namespace std;

int main()
{
// 获取a、da、b和db
string a,b;
char da,db;
cin >> a >>da >> b >> db;

// 计算pa
int pa=0;
for(int i=0;i<a.length();++i){
if(a[i]==da){
pa=pa*10+da-'0';
}
}

// 计算pb
int pb = 0;
for (int i = 0; i < b.length(); ++i){
if (b[i] == db){
pb = pb * 10 + db - '0';
}
}

// 输出结果
cout << pa+pb;

//system("pause");
return 0;
}

作者:@臭咸鱼

转载请注明出处:https://www.cnblogs.com/chouxianyu/

欢迎讨论和交流!