上一页 1 2 3 4 5 6 ··· 15 下一页
摘要: 输出三位数字密码,每位数字各不相同,且都不含7 #include <iostream> using namespace std; int a[3]; bool a1[10] = {false}; void dfs(int i){ if(i==3){ cout<<a[0]<<a[1]<<a[2]<<" 阅读全文
posted @ 2025-04-18 19:30 王一行(小号) 阅读(4) 评论(0) 推荐(0)
摘要: #include <graphics.h> #include <conio.h> const double sin36 = 0.587785252292; const double cos36 = 0.809016994375; const double tan54 = 1.376381920471 阅读全文
posted @ 2025-04-12 09:59 王一行(小号) 阅读(17) 评论(0) 推荐(0)
摘要: #include <graphics.h> #include <conio.h> int main(){ initgraph(1048,648); setfillcolor(GREEN); fillcircle(500,200,100); solidcircle(500,450,100); _get 阅读全文
posted @ 2025-04-11 19:42 王一行(小号) 阅读(11) 评论(0) 推荐(0)
摘要: #include <graphics.h> #include <conio.h> int main(){ initgraph(640, 480); circle(200, 200, 100); _getch(); closegraph(); return 0; } 阅读全文
posted @ 2025-04-11 19:34 王一行(小号) 阅读(12) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int number = 0; class Bank{ private: string name; string IDN; string p; vector<string> log; double money 阅读全文
posted @ 2025-03-08 09:49 王一行(小号) 阅读(12) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int gcd(int a,int b) { if(b==0){ return a; }else{ return gcd(b,a%b); } } int main() { string n; getline( 阅读全文
posted @ 2025-03-02 14:46 王一行(小号) 阅读(42) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2025-03-01 14:47 王一行(小号) 阅读(0) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; bool greater3(int value){ return value>3; } int main(){ vector<int> v; int arr[] = {1,2,3,4,5}; vector<i 阅读全文
posted @ 2025-03-01 09:50 王一行(小号) 阅读(10) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int ant = 0; int a1,b1,a2,b2; int m = 10000; int x1,yo; char c[1000][1000]; char d[1000][1000]; void bfs 阅读全文
posted @ 2025-01-22 10:00 王一行(小号) 阅读(31) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; string d[n+5],e[n+5]; double b[n+5],c[n+5]; long long a[n+5]; for(int i = 1; 阅读全文
posted @ 2025-01-18 21:48 王一行(小号) 阅读(8) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 15 下一页