上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 27 下一页
摘要: blokada 阅读全文
posted @ 2022-02-05 14:54 ethon-wang 阅读(19) 评论(0) 推荐(0) 编辑
摘要: code #include<iostream> #define min(a,b)a>b?b:a using namespace std; int n, m, a[25502], b[100]; int main() { ios::sync_with_stdio(false); cin >> n >> 阅读全文
posted @ 2022-02-05 13:32 ethon-wang 阅读(50) 评论(0) 推荐(0) 编辑
摘要: code #include<algorithm> #include<iostream> #include<complex> using namespace std; int main(){ ios::sync_with_stdio(false); int n,m; cin>>n>>m; int a[ 阅读全文
posted @ 2022-02-05 11:30 ethon-wang 阅读(34) 评论(0) 推荐(0) 编辑
摘要: code #include<algorithm> #include<iostream> using namespace std; bool check(int i){ int a=i,b=i+1,c=i+2; while(a||b||c){ //TODO test carry bit if((a%1 阅读全文
posted @ 2022-02-04 12:32 ethon-wang 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 颜色合成 阅读全文
posted @ 2022-02-03 13:38 ethon-wang 阅读(30) 评论(0) 推荐(0) 编辑
摘要: code #include<iostream> using namespace std; int a[11][11], b[11], bj[11] = {0}, n, k, sum = 0; int f(int s) { int i1; if (s == n) { sum++; if (sum == 阅读全文
posted @ 2022-02-03 11:40 ethon-wang 阅读(39) 评论(0) 推荐(0) 编辑
摘要: code #include<algorithm> #include<iostream> using namespace std; int a[105], b, n; int main() { ios::sync_with_stdio(false); while (cin >> n >> b) { / 阅读全文
posted @ 2022-02-03 09:55 ethon-wang 阅读(95) 评论(0) 推荐(0) 编辑
摘要: code #include<iostream> #include<algorithm> #include<complex> #include<cstring> using namespace std; const int N=10000; double a[N],b[N],c[N],d[N],e[N 阅读全文
posted @ 2022-02-02 23:25 ethon-wang 阅读(35) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/walfud/articles/2047096.html cout格式化输出 cout输出精度、位数 阅读全文
posted @ 2022-02-02 23:06 ethon-wang 阅读(18) 评论(0) 推荐(0) 编辑
摘要: code #include<iostream> #include<algorithm> using namespace std; int cnt = 0 ; void fun(int n, int m, char a, char b, char c) { if (n <= m) { cnt++; } 阅读全文
posted @ 2022-02-02 09:26 ethon-wang 阅读(24) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 27 下一页