摘要: #include <iostream> #include <cstdio> using namespace std; int nxt[100], ver[100], head[100], dist[100]; //如果用next会名字空间冲突 int tot = 0; void add(int x, 阅读全文
posted @ 2021-02-17 07:47 py佐料 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 在经过多次尝试后给出以下json文件的配置(之前一直处理不对) ps:路径改成自己的mingw文件夹下的bin路径 有时候安装的mingw出问题,会导致bin文件夹下没有gdb.exe文件(重装mingw即可) launch.json: ``` { "version": "0.2.0", "conf 阅读全文
posted @ 2021-02-17 07:18 py佐料 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdio> #include<iomanip> using namespace std; int b[9]; int ans; int n; int panduan(int a[], int n)//1不在,0在 { bool x = 阅读全文
posted @ 2021-02-06 05:44 py佐料 阅读(88) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdio> using namespace std; int b[100]; int c[100]; int a[3] = { 1,2,3 }; int ans; int n; void fun(int depth, int sum) 阅读全文
posted @ 2021-02-05 21:05 py佐料 阅读(58) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int n=0,k=0,ans=0; int a[25]; bool panduan(int x) { for(int i=2;i<floor(sqrt(x));i++) { if(x%i==0) retur 阅读全文
posted @ 2021-02-04 21:20 py佐料 阅读(45) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio> #include <queue> #include <utility>//pair using namespace std; typedef pair<int, int> pii; const int N = 405; int d[N][N]; int main( 阅读全文
posted @ 2021-02-03 07:42 py佐料 阅读(49) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdio> using namespace std; int a,b,c,d; void fun(int x) { if(x<=100&&x>=90) cout<<"A"<<endl; else if(x<=89&&x>=80) cou 阅读全文
posted @ 2021-01-01 09:58 py佐料 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdio> using namespace std; #define PI 3.1415927 int main() { double a; while(scanf("%lf",&a)!=EOF) { double s=4*PI*a*a 阅读全文
posted @ 2020-12-22 23:55 py佐料 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 法一:scanf对于数字的读取来说,不读入空白和换行符,但读字符的时候则会读入 法二 输入两组数据后,才出现结果,两种方法中的printf中的换行符都是刷新缓冲区的作用 阅读全文
posted @ 2020-12-21 15:30 py佐料 阅读(39) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdio> #include <algorithm> using namespace std; char a,b,c; int main() { while(scanf("%c%c%c\n",&a,&b,&c)!=EOF)//这里读取格 阅读全文
posted @ 2020-12-21 15:05 py佐料 阅读(42) 评论(0) 推荐(0) 编辑