本文主要是介绍PAT甲级2022年冬季考试 20 A-1 Reduction of Proper Fractions,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
考试的时候理解错题意了,觉得是相同的字母都删掉,其实只要相同一个删掉一个;
另外就是所有字母都删完了,剩下个空的"",输出不能是空""要输出0才可以
#include<iostream>
#include<string>
#include<cmath>
#include<vector>
#include<algorithm>
using namespace std;
struct nod{string val; int num=0;};
int main() {string a, c, aa, cc;int k, h, y, z, i, j, status0[10], status1[10];float res1, res2;cin >> a >> c;y = stoi(a);z = stoi(c);res1 = y / (float)z;fill(status0, status0+10, 0); //不能多删也就是一个重复删除一个fill(status1, status1+10, 0); //不能多删也就是一个重复删除一个for(i = 0; i < a.length(); i++) { int kk = -9;for(j = 0; j < c.length(); j++) {if(status1[j]==0 && a[i]==c[j]) {status1[j] = 1;kk = 9;break;}}if(kk < 0) aa += a[i];}for(i = 0; i < c.length(); i++) {int kk = -9;for(j = 0; j < a.length(); j++) {if(status0[j]==0 && c[i]==a[j]) {status0[j] = 1;kk = 9;break;}}if(kk < 0) cc += c[i];}if(aa.length()==0) aa="0";if(cc.length()==0) cc="0"; //删完以后用0代替if(abs(res1- (stoi(aa) / (float)stoi(cc))) < 0.00000001) {printf("%d/%d = %d/%d", stoi(a), stoi(c), stoi(aa), stoi(cc));}else printf("%d/%d != %d/%d", stoi(a), stoi(c), stoi(aa), stoi(cc));return 0;
}
GitHub - ZouJiu1/PAT: 浙江大学PAT题目解答内容浙江大学PAT题目解答内容. Contribute to ZouJiu1/PAT development by creating an account on GitHub.https://github.com/ZouJiu1/PAT
这篇关于PAT甲级2022年冬季考试 20 A-1 Reduction of Proper Fractions的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!