摘要: 从键盘读入一个分数算式,为2个分数做加法或者减法,请输出分数算式的结果,结果也用分数表达,且约分到最简形式。(请注意:做减法可能得到负的分数,如果是负数要输出负号-,如1/15-4/15结果为-1/5)。 这道题真的很有意思! 值得一做,可以先用find和rfind这两个函数求出这四个数 在转化成整 阅读全文
posted @ 2022-09-18 21:03 Euouae 阅读(91) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; const int N=3e5+5,MOD=998244353; int n,m,opt,l,r,v; struct Matrix{ int n,m,h[2][5]; inline void print(){ 阅读全文
posted @ 2022-09-18 17:39 Euouae 阅读(25) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; int n,a[40][40],x,y; int main(){ cin>>n; x=1,y=(n+1)/2; for(int i=1;i<=n*n;i++){ a[x][y]=i; if(!a[(x-2+n) 阅读全文
posted @ 2022-09-18 13:20 Euouae 阅读(18) 评论(0) 推荐(0) 编辑
摘要: //(water problem) #include<bits/stdc++.h> //#pragma GCC optimize (3) using namespace std; int main() { string s1,s2; getline(cin,s1);getline(cin,s2); 阅读全文
posted @ 2022-09-18 13:17 Euouae 阅读(17) 评论(1) 推荐(0) 编辑
摘要: //(water problem) #include<bits/stdc++.h> //#pragma GCC optimize (3) using namespace std; const int mx=101000; //#define ll long long 懒人可用 long long l 阅读全文
posted @ 2022-09-18 13:13 Euouae 阅读(16) 评论(0) 推荐(0) 编辑