10 2022 档案

摘要:/* A*B problem 高精度 */ #include<bits/stdc++.h> using namespace std; int main(void) { char a[10005],b[10005]; int numa[10005],numb[10005]; int multi[300 阅读全文
posted @ 2022-10-15 02:03 血赤叶红 阅读(122) 评论(0) 推荐(0)
摘要:首先我们先找到Visual Studio编辑器中的“解决方案”,右键点击并在下拉菜单中找到属性并点击。 点击后会出现一个弹窗,在里面找到“调试源文件”,在右边列表中找到include文件夹的路径并复制下来。 在文件资源管理器中输入路径找到include文件夹。在include文件夹中新建一个文件夹b 阅读全文
posted @ 2022-10-15 01:07 血赤叶红 阅读(8504) 评论(0) 推荐(0)
摘要:/* A-B problem 高精度 */ #include<bits/stdc++.h> using namespace std; int max(int a,int b) { return a>=b?a:b; } int main(void) { char s[101000],p[101000] 阅读全文
posted @ 2022-10-15 00:38 血赤叶红 阅读(222) 评论(0) 推荐(0)
摘要:/* A+B problem 高精度 */ #include<bits/stdc++.h> using namespace std; int max(int a,int b) { return a>=b?a:b; } int main(void) { char a[505],b[505]; int 阅读全文
posted @ 2022-10-13 19:13 血赤叶红 阅读(69) 评论(0) 推荐(0)
摘要:#include<bits/stdc++.h> using namespace std; int main(void) { int n; char a[105]; char answer[21][105]; int pt[21]; //读取逗号的位置 int cnt[21][105]; //读取空格 阅读全文
posted @ 2022-10-13 17:43 血赤叶红 阅读(44) 评论(0) 推荐(0)