-
个人简介
我是最强的欧特慢、打字小能手,复制小能手,能比得过我吗?哈哈哈哈!!!
字符: getcher() // 获取单个字符; putcher() // 输出单个字符; isdigit() // 判断是否是数字; islower() // 判断是否是小写; isupper() // 判断是否是大写; isalpha() // 判断字母; 字符数组: puts(str)多个字符存到数组; gets(str)输出一整行字符串(包括空格,已弃用); fgets(str,100,stdin) // 获取一整行100长度; strcat(str1,str2); // 把str2连接到str1后面; strcmp(str1,str2); // 比较两个字符串,正数:1大;0:一样;负数:2大; strlen(str) // 返回str的长度(不包括\0); 字符串: getline(cin,str) // 获取一整行 回车结尾; str.substr(1,2) // 获取子串;从i开始,长度为2的子串; str.find(str2) // 在str2中,返回所在的下标,没找到返回string::npos; str.rfind(str2) // 同find,但是从右向左转; str.erase(i,l) // 从i开始,删除长度为l的子字符串; str.insert(i,str2) // 在i的位置前,插入str2; str.size() // 获取str的长度; str.c_str() // 获取str对应的char[]; str.begin() // 获取str的首地址; str.end() // 获取str的尾地址(最后一个元素后面); 内建函数: _builtin ffs(x) 返回x中最后一个为1的位置(12-1100)-3位置; __builtin_popcount(x) x中1的个数(1100) -2; __builtin_ctz(x) 末尾0的个数(11000) -3; __builtin_clz(x) 前导0的个数 0000000000000000000000000 01100(28); __builtin_parity(x) x中1的奇偶性,1有偶数个返回0,否则返回1;
将字符串转成数字: 1.借用bitset将01字符串变成无符号整数 string a = "1001"; bitset<64> b(string("1001")) bitset<64> b(a) cout<<b.to\_ulong() 2.用sscanf() 函数把字符数组里面的字符串打印到数值变量里面 int buf; sscanf("123456","%d",&buf) printf("%d\\n",buf) 3.用sprintf()把数据打印到字符数组里面 char s[100] sprintf(s,"%d",123) 4.用直接的方式 string s = "1234"; int n = 0; for(int i = 0;i<4;i++){ n = n\*10+s[i]-'0'; } 5.一般用法 char buf[512] = ; sscanf("123456 ", "%s", buf); printf("%s\\n", buf); 结果为:123456 1. 取指定长度的字符串。如在下例中,取最大长度为4字节的字符串。 sscanf("123456 ", "%4s", buf); printf("%s\\n", buf); 结果为:12342. 取到指定字符为止的字符串。如在下例中,取遇到空格为止字符串。 sscanf("123456 abcdedf", "%[^ ]", buf); printf("%s\\n", buf); 结果为:123456 3. 取仅包含指定字符集的字符串。如在下例中,取仅包含1到9和小写字母的字符串。 sscanf("123456abcdedfBCDEF", "%[1-9a-z]", buf); printf("%s\\n", buf); 结果为:123456abcdedf 4. 取到指定字符集为止的字符串。如在下例中,取遇到大写字母为止的字符串。 sscanf("123456abcdedfBCDEF", "%[^A-Z]", buf); printf("%s\\n", buf); 结果为:123456abcdedf 5、给定一个字符串iios/12DDWDFF@122,获取 / 和 @ 之间的字符串,先将 "iios/"过滤掉,再将 非'@'的一串内容送到buf中 sscanf("iios/12DDWDFF@122", "%\*[^/]/%[^@]", buf); printf("%s\\n", buf); 结果为:12DDWDFF 6、给定一个字符串"hello, world",仅保留"world"。(注意:“,”之后有一空格) sscanf("hello, world", "%\*s%s", buf); printf("%s\\n", buf); 结果为:world P.S. %\*s表示第一个匹配到的%s被过滤掉,即hello,被过滤了,如果没有空格则结果为 NUL
//字符数组(最后一个预留给'\0'): //char str[100] puts(str) 输出字符串 //gets(str) 输入一个字符串(包括空格,已经弃用) //fgets(str,100,stdin) //获取长度为100的字符串,并且是标准输入方式,存到str中 //strcat(str,str1) 在str后面连接str1 //strcmp(str1,str2) //比较两个字符串返回的是正数:1大 0:一样大 负数:2大 //strlen(str1) 获取字符数组的长度(不包括\0) //islower()isupper() //string a //= 赋值 //+= 在尾部添加字符 //+ 两个结合 //== != <= >= > <比较字符串 1000 100 abcd ab asd oab abcd obc //[]取单个字符 // >> ,getline(cin,a) //<< //s.substr(i,1)从索引i开始,取得长度为1的子串 //字符串和子串:abcde "" a b c d e ab bc cd de abc bcd abcd bcde abced //s.find(x)返回符合搜索条件的字符区间内的第一个字符的索引(下标), //没找到返回npos //s.erase(i,1)从索引i开始往后删1个 //s.insert(i,str)在字符串s中间的某个位置插入字符串,指定第一个安插位置的索引 //,被插入的字符串放在这个索引的后面。 //a.size() a.length() lena=a.size(); //islower()判断这个字符是否是小写isupper()判断这个字符是否是大写 // tolower()字符转换成小写toupper
全排列函数: //prev_permutation() //next_permutation()
#include<bits/stdc++.h> using namespace std; int main(){ clock_t start = clock();
for(int i = 0;i<100000;i++){ printf("%d\n",10000); } clock_t end = clock(); double cpu_time_end = static_cast<double> (end-start)/CLOCKS_PER_SEC; cout<<"CPU运行时间"<<cpu_time_end<<"秒"<<endl;
}
全平台肘击桑境阳,支持者复制红字挂主页
全平台肘击桑境阳,支持者复制红字挂主页
#include <iostream> using namespace std;
// 定义字符串变量s1和s2,用于存储输入的两个数字 string s1, s2; // 定义三个整型数组a, b, c,分别用于存储s1, s2的反转数字以及它们的和 int a[100005], b[100005], c[100005]; // 定义整型变量len1, len2用于存储s1, s2的长度,maxx用于存储最终结果的最大长度 int len1, len2, maxx;
int main() { // 输入两个字符串表示的数字 cin >> s1 >> s2; // 获取两个字符串的长度 len1 = s1.length(); len2 = s2.length(); // 将s1的字符转换为整数,并逆序存储在数组a中 for(int i = 0; i < len1; i++) a[i] = s1[len1 - i - 1] - '0'; // 将s2的字符转换为整数,并逆序存储在数组b中 for(int i = 0; i < len2; i++) b[i] = s2[len2 - i - 1] - '0'; // 初始化maxx为两个数字中较长的长度 maxx = max(len1, len2); // 计算a和b的对应位相加的结果,存储在c中 for(int i = 0; i < maxx; i++) c[i] = a[i] + b[i]; // 处理进位 for(int i = 0; i < maxx; i++) { c[i + 1] += c[i] / 10; c[i] %= 10; } // 如果最高位有进位,则增加maxx if(c[maxx] > 0) maxx++; // 去除结果前导0 while(maxx > 1 && c[maxx - 1] == 0) maxx--; // 逆序输出最终结果 for(int i = maxx - 1; i >= 0; i--) cout << c[i]; return 0; }
我要蜡烛!!!
我要爱心!!!
冒险者
小黑屋 可存档
人生重开模拟器|破解版1|破解版2### 另一个版本的人生重开模拟器
#include<bits/stdc++.h> using namespace std; bool vis[400][400];//状态数组 bool g[400][400] ;// 地图 int off[4][2]={ {-1,0}, {0,-1}, {0,1}, {1,0} }; struct node{ int x,y; }; queue<node> q; int n,m,cnt=0; void bfs(){ while(!q.empty()){ node c = q.front();// 取队首元素 q.pop(); // 删除 for(int i = 0;i<4;i++){ int tx = c.x+off[i][0]; int ty = c.y+off[i][1]; if(tx>=1 && tx<=n && ty>=1 && ty<=m && g[tx][ty]==1&& vis[tx][ty]==0){ vis[tx][ty]=1; q.push({tx,ty}); // q.push((node){tx,ty}); } } } } int main(){ cin>>n>>m; for(int i = 1;i<=n;i++){ for(int j = 1;j<=m;j++){ cin>>g[i][j]; } } for(int i = 1;i<=n;i++){ for(int j = 1;j<=m;j++){ if(g[i][j]==1 && vis[i][j]==0){ //如果岛屿=1 开始深搜 q.push((node){i,j}); bfs(); cnt++; // 岛屿数量+1 } } } cout<<cnt; }
#有需要可以Copy
set & map
set<int> st; map<string,int> mp; mp[key] = value;//插入键值
随机数造数据
#include using namespace std; int main(){ freopen( "test.in" , "w" , stdout ); srand( int ( time ( 0 ) ) ); int n, m, p, a; n = rand() % 10000; m = rand() % 10000; cout << m << endl; cout << n << endl; while( m-- ){ p = rand() % 10000; a = rand() % 10000; cout << p << ' ' << a << endl; } fclose( stdout ); }
万能开头:
#include<bits/stdc++.h> using namespace std; int main(){ }
关于vector:
vector<int> v;//创建一个空vector v.push_back(x)//向尾部增加一个元素x v.insert(pos,x)//向pos地址指向元素前增加一个元素x v[i]//访问第i位元素 v.pop_back()//删除向量中最后一个元素 v.clear()//清空向量中所有元素 v.empty()//判断向量是否为空 v.size()//返回向量中元素的个数 v.begin()//返回量头指针(迭代器),指向第一个元素 v.end()//返回量尾指针(迭代器),指向第一个元素+1位置 v.erase(v.begin()+i)//删除第i位位置的元素
全排列函数:
next_permutation(数组头地址,数组尾地址);//求下一个全排列 prev_permutation(数组头地址,数组尾地址);//求上一个全排列
排列数组(sort函数):
sort(a(begin),a(end)+size);//默认小到大 sort(a(begin),a(end)+size,greater<int>());//大到小 sort(a(begin),a(end)+size,less<int>());//小到大
与字符相关的函数 ``none getchar()//输入单个字符 putchar()//输出单个字符 islower(x)//判断x是否为小写字母 isupper(x)//判断x是否为大写字母 isdigit(x)//判断x是否为数字 isalpha(x)//判断x是否为字母
builtin内建函数
__builtin_ffs(x)//返回x中最后一个为1的位是从后往前的第几位 __builtin_popcount(x)//x中1的个数 __builtin_ctz(x)//x末尾0的个数,x=0时结果未定义 __builtin_clz(x)//x前导0的个数,x=0时结果未定义 __builtin_parity(x)//x中1的奇偶性 ```二分查找核心代码 ```none int dp[30000]; int n; int fun(int k){ int l=0,r=n-1,m=l+r/2; while(l<r){ if(k==dp[m]){ return m; }else if(k>dp[m]){ l=m+1; }else{ r=m-1; } } return -1; }
最大公因数&最小公因数
a=al*gcd(a,b) b=bl*gcd(a,b) lcm(a,b)=al*gcd(a,b)*bl a*b=gcd(a,b)*lcm(a,b)
斐波那契数列
int dfs( int a ){ if( a == 1 || a == 2 ){ return 1; } return dfs( a - 1 ) + dfs( a - 2 ); }
二分查找法
binary__search()![]
#include<bits/stdc++.h> using namespace std; int n, q; string s[1000]; bool find( string a , int len , int k){//s[k]------------被查找 if( s[k].size() < len ){ return false; } for( int i = s[k].size() - len,i1 = 0; i < s[k].size(); i++ , i1++ ){ if( s[k][i] != a[i1] ){ return false; } } return true; } bool cmp( string a, string b ){ if( a.size() == b.size() ){ return a < b; }else{ return a.size() < b.size(); } } int main() { cin >> n >> q; for( int i = 0; i < n; i++ ){ cin >> s[i]; } sort( s, s+n ,cmp); for( int i = 0; i < q; i++ ){ int a; cin >> a; string str; cin >> str; bool flag = true; for( int i = 0; i < n; i++ ){ if( find(str,a,i) ){ cout << s[i] << endl; flag = false; break; } } if( flag ){ cout << -1 << endl; } } return 0; } 啊你颓废了快点这个→ [TuiFei Break!\*\*TuiFei Break!\*\*](https://www.luogu.com.cn/problem/list) 啊你不想点好吧祝你颓的开心 ### [poki游戏集](https://www.poki.com/) ### [你画我猜](https://gartic.io/066P0Pmu) ### [WebMC](https://smgoro.github.io/WebMC/) ### [植物大战僵尸网页版](http://pvz.wan1234.com/) ### [超级猫里奥](https://tiwb.github.io/catmario/) ### [扫雷](https://minesweeper.cn/) ### [图片去背景](https://www.remove.bg/zh) ### [今天吃啥](http://guozhivip.com/eat/) ### [Crazygames](https://www.crazygames.com/) ### [狗狗刺杀](https://www.dogod.io/) ### [来画画](http://weavesilk.com/) ### [一堆游戏](https://www.luogu.com.cn/blog/wuwendongxi/wang-ye-you-xi) ### [整活合集](https://www.luogu.com.cn/paste/lq5e6bzl) ### [另一堆游戏](https://xingye.me/game/index.php) ### [C++游戏](https://www.luogu.com.cn/paste/xwewvqf7) ### [DreamMC视频合集](https://www.luogu.com.cn/paste/v5wj91oh) ### [Minecraft成就生成器](http://mc.whitegem.net/#) ### [电脑模拟器](http://v1.windows93.net/) ### [生火间](https://www.xiaodao0.com/admin/index.html?lang=zh_tw) ### [超好玩的C++游戏](https://www.luogu.com.cn/paste/xwewvqf7) ### [一堆游戏](https://www.luogu.com.cn/paste/s2viotic) ### [Minecraft](https://aka.ms/DownloadNewLauncher?ref=launcher) ### [塔防游戏](http://tafang123.com/) ### [游戏?](https://box3.fun/p/bedwars?recommend_by=79810) ### [io游戏](https://m28.studio/) ### [反应堆放置](https://likexia.gitee.io/reactoridle/) ### [另一堆游戏](https://blog.csdn.net/DarkFlames/article/details/100583796) ### [装B模拟器](http://hackcode.ishoulu.com/hackertyper/) ### [对称游戏](http://weavesilk.com/) ### [一些传统游戏](https://www.chiark.greenend.org.uk/~sgtatham/puzzles/) ### [猫国建设者](https://likexia.gitee.io/cat-zh/) ### [五彩斑斓的一堆游戏](https://www.luogu.com.cn/paste/1yanuh86) ### [坦克游戏](https://diep.io/) ### [游戏集合](https://zh.y8.com/) ### [比上面所有都好van的游戏](https://www.g8hh.com/#/) ### [圈地大作战](https://splix.io/) ### [SCP wiki](http://scp-wiki-cn.wikidot.com/main) ### [scratch中社](https://www.scratch-cn.cn/) ### [阳光开朗大男孩简谱](https://www.qupure.com/jitapu/10989.html) ### [共创世界](https://www.ccw.site/) ### [摸鱼](https://www.luogu.com.cn/paste/gihdyw1p) ### [好东西1(梗图)](https://www.luogu.com.cn/paste/ys1o6d8h) ### [好东西2(梗图)](https://www.luogu.com.cn/paste/f4zj5g4y) ### [好东西3(梗图)](https://www.luogu.com.cn/paste/ldg7pjkk) ### [好东西4(网址)](https://www.luogu.com.cn/paste/g4me7ihf) ### [好东西5(网址)](https://www.luogu.com.cn/paste/yoz0b7u6) ### [好东西6(网址)](https://www.luogu.com.cn/paste/0jeht3zy) ### [你谷词典](https://www.luogu.com.cn/blog/334586/luogu-dictionary) ### [免费CHATGPT](https://c.binjie.fun/) ### [slay.one详解](https://www.luogu.com.cn/blog/334586/#type=Slay.one) ### [slay.one](https://slay.one/) ### [steam加速器](https://www.luogu.com.cn/discuss/678905) ### [藏头诗生成器](https://www.html6game.com/) ### [小作文合集](https://www.luogu.com.cn/paste/4uagufhb) ### [搞笑事件网站](https://www.51qumi.com/42855_3.html%E5%8A%A0) ### [将军棋](http://generals.io/) ### [太空公司](https://zhaolinxu.github.io/SpaceCompany/) ### [太空公司汉化版](https://www.mhhf.com/game-5302/index.html) ### [国际象棋Online](https://www.chess.com/) ### [人生重开模拟器](https://liferestart.syaro.io/public/index.html) ### [小黑屋生存游戏](https://mklab.eu.org/adarkroom/) ### [胎神游戏集](https://www.luogu.com.cn/blog/z1e2k3i4/#) ### [信任的进化](https://dccxi.com/trust/) ### [B站](https://www.bilibili.com/) ### [猫国建设者](https://likexia.gitee.io/cat-zh/) ### [超苦逼冒险者](http://kubitionadvanture.sinaapp.com/) ### [Evlove-进化](https://g8hh.github.io/evolve/) ### [C++游戏](https://www.luogu.com.cn/blog/wuwendongxi/c-you-xi-suo-yin) ### [游戏合集](https://www.luogu.com.cn/blog/beimeizou233/you-xi) ### [地铁线路图绘制器](https://uat-railmapgen.github.io/rmp/) ### [Minecraft 成就编辑器](http://mc.whitegem.net/#) ### [Three 2048](http://play.threesgame.com/) ### [我的世界在线玩](https://classic.minecraft.net/?join=uMgowity7S-RHash/) ### [某些人强列要求的神贴](https://arachnidaqueen.blog.luogu.org/nei-suo-nian-di-shen-tie-shou-lu) ### [网页版我的世界](https://ws.imc.re/) ### [生火间](https://www.xiaodao0.com/admin/index.html?lang=cn) ### [亿点点小游戏](http://www.poki.io/) ### [枪战](https://www.slay.one/) ### [人生重开模拟器(大全](http://www.962.net/wz/175517.html) ### [围住小猫](https://luogulo.gq/show.php?url=https://www.luogu.com.cn/discuss/show/350606) ### [C++小游戏](https://www.luogu.com.cn/blog/wuwendongxi/c-you-xi-suo-yin) ### [塔防游戏](https://yorg.io/) ### [开采器](https://shapez.io/) ### [2048](https://2048game.com/) ### [大2048](https://www.csie.ntu.edu.tw/~b01902112/9007199254740992/) ### [贪吃球](https://digdig.io/) ### [洛谷树](https://wyxkk.gitee.io/the-luogu-tree-zh/) ### [正常的2048](http://2048game.com/) ### [名称竞技场](http://deepmess.com/namerena/#) ### [生命小游戏](http://playgameoflife.com/) ### [绝地求生像素版](http://slay.one/) ### [Game集合1](https://ncase.me/) ### [尺规作图游戏](https://www.euclidea.xyz/) ### [Game集合2](http://io233.com/) ### [NazoGame](http://nazo.one-story.cn/) ### [猫国建设者](https://likexia.gitee.io/cat-zh/#) ### [飞翔的小鸟](http://flaap.io/) ### [国际象棋中文版](https://www.chess.com/zh) ### [太空公司](https://likexia.gitee.io/spacecompany1/) ### [球球大作战](https://mope.io/) ### [膜拜Siyuan](https://lmoliver.github.io/mosiyuan/index.html) ### [扫雷](https://www.revolversweeper.com/) ### [Html5中国象棋](https://www.html5tricks.com/demo/jiaoben1765/index.html) ### [切水果](https://www.html5tricks.com/demo/html5-fruit-ninja/index.html) ### [五子棋](https://www.html5tricks.com/demo/wuziqi/index.html) ### [吃豆人](https://www.html5tricks.com/demo/html5-pcman/index.html) ### [太空战机](https://www.html5tricks.com/demo/html5-fly/play.html) ### [高级马里奥](https://www.html5tricks.com/demo/html5-mario/index.html) ### [视觉体验](https://www.luogu.com.cn/paste/wc7rci9z) ### [各种小挂机](http://abowman.com/) ### [游戏主站](http://www.xmcjc.com/) ### [在线DOS游戏](https://dos.zczc.cz/) ### [小霸王其乐无穷](https://www.yikm.net/) ### [Pacogames](https://www.pacogames.com/) ### [Kbhgames](http://kbhgames.com/) ### [畅玩空间](https://play.wo1wan.com/) ### [ioGames](https://iogames.space/) ### [Poki](https://poki.com/) ### [Y8Games](https://zh.y8.com/) ### [dig](https://digdig.io/) ### [yorg](https://yorg.io/) ### [Sans Fight](http://jcw87.github.io/c2-sans-fight/) ### [切断它](https://slices.ovh/) ### [过关算我输](https://nazo.one-story.cn/)|[攻略](https://wxwoo.blog.luogu.org/nazo-game-guide) ### [大全](https://kbhgames.com/) ### [大全2](https://www.crazygames.com/) ### [超多可玩小游戏](https://xingye.me/game/new/) ### [音游](https://xingye.me/game/eatkano/) ### [专业表白](https://ncase.me/door/) ### [炫彩粒子](http://www.spielzeugz.de/html5/liquid-particles-3D/) ### [名字竞技场](http://namerena.github.io/) ### [游戏大全](https://iogames.space/littlebigsnake-io) ### [floor.io策略](https://florrio.fandom.com/zh/wiki/%E7%AD%96%E7%95%A5) ### [数墙](https://0hn0.com/) ### [合集](http://lab.mkblog.cn/) ### [小黑屋](https://www.luogu.com.cn/paste/n95vhos2) ### [写算法的小女孩](https://www.luogu.com.cn/paste/pos0dks4) ### [这个其实更好玩](http://lab.mkblog.cn/) ### [猜汉字](https://handle.antfu.me/) ### [洛谷2048](http://hczhcz.github.io/my-2048/index.html?00000t=%E5%9C%A8%E6%B4%9B%E8%B0%B7%E7%9A%84%E6%88%90%E9%95%BF%E4%B9%8B%E8%B7%AF&v2=%E6%96%B0&v4=%E8%8F%9C&v8=%E8%92%9F&v16=%E7%81%B0&v32=%E8%93%9D&v64=%E7%BB%BF&v128=%E6%A9%99&v256=%E7%BA%A2&v512=%E7%B4%AB&v1024=%E5%A4%A7&v2048=%E5%B7%A8&m=%E7%A5%9E&w=%E8%A2%AB%E6%8E%88%E4%BA%88+%E7%AE%A1%E7%90%86%E6%89%80%E6%9C%89+%E6%9D%83%E9%99%90%EF%BC%9B%E5%8E%9F%E5%9B%A0%E6%98%AF%EF%BC%9A%E5%A4%AA%E7%89%9B%E4%BA%86&o=%E8%A2%AB+%E6%92%A4%E9%94%80+%E8%BF%9B%E5%85%A5%E4%B8%BB%E7%AB%99+%E6%9D%83%E9%99%90%EF%BC%9B%E5%8E%9F%E5%9B%A0%E6%98%AF%EF%BC%9A%E5%A4%AA%E8%92%9F%E4%BA%86) ### [人生重开模拟器](http://liferestart.syaro.io/view/index.html) ### [这个真的很好玩](https://youquhome.com/page/2/) ### [问问自己](https://btfy.vercel.app/?q=5oiR5piv6JKf6JK75ZCX77yf) ### [球球](https://mope.io/) ### [酷跑](https://bonk.io/) ### [OI-2048](https://ak-ioi.com/apps/oi-2048/) ### [欢乐围猫](https://luogulo.gq/show.php?url=https://www.luogu.com.cn/discuss/1?page=1) ### [插死它](http://narwhale.io/) ### [玩个锤子](https://www.zlap.io/) ### [小恐龙【新】](https://dinoswords.gg/) ### [圈地](https://splix.io/) ### [好van的](https://neal.fun/) ### [小蝌蚪](https://limax.io/) ### [贪吃蛇](http://slither.io/) ### [我来帮你搜](https://baidu.physton.com/?q%E7%99%BE%E5%BA%A6) ### [洛谷管理员](https://www.luogu.com.cn/paste/hs7rk096) ### [跳跳](https://pie.ai/) ### [算数入门](https://www.luogu.com.cn/paste/pwukvult) ### [更多游戏(比这个更多)](https://www.luogu.com.cn/paste/g457fkq8) ### [沙盒游戏](https://sandspiel.club/) ### [考验智商的游戏](https://nonogram.frvr.com/) ### [I AK IOI](https://ak-ioi.com/apps/oi-2048/) ### [谷歌小恐龙升级版](https://dinoswords.gg/) ### [一堆优质C++小游戏](https://www.luogu.com.cn/blog/z1e2k3i4/) ### [信任的进化](https://sekai.co/trust/) ### [用键盘弹钢琴](https://www.xiwnn.com/piano/) ### [玩物理大师专属游戏(超好玩)](https://www.xiwnn.com/huaxian/) ### [为其他物理大师设计游戏](https://www.xiwnn.com/huaxian/editor/) ### [一堆散装游戏](https://www.luogu.com.cn/blog/beimeizou233/you-xi) ### [一个放了很多游戏链接的个人主页](https://www.luogu.com.cn/user/118537) ### [策略空战游戏](http://quiets.vip/ga.html) ### [小黑屋 可存档](https://www.xiaodao0.com/admin/index.html?lang=cn) ### [太空放置游戏](http://idlegame.gitee.io/idlespace2/#/info) ### [一堆好游戏](https://www.crazygames.com/) ### [人生重开模拟器](http://liferestart.syaro.io/view/index.html)|[破解版1](http://restart.typekuon.com/lifeRestart/view/)|[破解版2](http://remake.solaking.com/) ### [另一个版本的人生重开模拟器](http://119.3.26.170:8081/view/test.html) ### [墙裂推荐游戏 不能存档](https://kbhgames.com/game/space-huggers) ### [小io的游戏集](https://iogames.space/) ### [HTML5网页游戏](https://blog.csdn.net/aaa333qwe/article/details/72879188) ### [小yorg游戏](https://yorg.io/) ### [加法版2048](https://hotwords123.github.io/233666/) ### [元素版2048](http://dimit.me/Fe26/index.html) ### [大大2048](https://www.csie.ntu.edu.tw/~b01902112/9007199254740992/) ### [冒险者](http://kubitionadvanture.sinaapp.com/) ### [超级马里奥](https://jcw87.github.io/c2-smb1/) ### [解压水果合成游戏](http://www.wesane.com/game/654/?dt_dapp=1&dt_dapp=1) ### [太空公司(可存档)](https://likexia.gitee.io/spacecompany1/) ### [装13必备黑客模拟器](http://hackcode.ishoulu.com/linux/) ### [名称竞技场](http://namerena.github.io/) ### [一个奇怪的个人主页](https://www.luogu.com.cn/user/434525) ### [一个奇怪的讨论帖](https://www.luogu.com.cn/discuss/60255) ### [一堆奇怪的链接](https://lab.magiconch.com/) ### [一段奇怪的个人简介](https://www.luogu.com.cn/user/482728) ### [一个奇怪的云剪贴板](https://www.luogu.com.cn/paste/8ch6zolf) ### [一个神秘的游戏](https://www.fantasyflightgames.com/en/index/) ### [C语言游戏索引](https://www.luogu.com.cn/blog/wuwendongxi/c-you-xi-suo-yin) ### [另一坨C++小游戏](https://www.luogu.com.cn/blog/jvruo-0076/wow-hao-duo-c-you-hu-dai-ma-post) ### [洛谷树](https://wyxkk.gitee.io/the-luogu-tree-zh/) ### [星夜小游戏集](https://xingye.me/game/index.php) ### [florr.io](https://florr.io/) ### [slay.one](https://slay.one/) ### [generals.io](https://generals.io/) ### [digdig.io](https://digdig.io/) ### [bloxd.io](https://bloxd.io/) ## C++游戏 ### [圣光战神-起源之战](https://blog.csdn.net/qq_39282312/article/details/127270322?spm=1001.2014.3001.5501) ### [纪元战争](https://www.luogu.com.cn/discuss/568877) ### [C++小游戏合集](https://www.luogu.com.cn/blog/wuwendongxi/c-you-xi-suo-yin) ### [五子棋](https://www.luogu.com.cn/paste/zql9jl43) ### [AK-IOI](https://ak-ioi.com/apps/fireboy-and-watergirl/) ### [宝可梦小游戏](https://www.luogu.com.cn/paste/u891zqi3) ### [超————————级好玩的c++小游戏](https://www.luogu.com.cn/paste/97kx9rt4) ### [反应速度(手速)测试](https://www.luogu.com.cn/paste/d56bj0p0) ### [病毒游戏](https://www.luogu.com.cn/paste/tf416owy) ### [2048](https://www.luogu.com.cn/discuss/665524) ### [自己看](https://www.luogu.com.cn/discuss/665777) ### [三国杀](https://www.luogu.com.cn/paste/76j4d2vp) ### 还有一些 [点我](https://www.luogu.com/paste/1agz1vs7) ## 不错的个人主页 ### [1号幸运儿](https://www.luogu.com.cn/user/842618#main) ### [2号幸运儿](https://www.luogu.com.cn/user/744687) ### [3号幸运儿](https://www.luogu.com.cn/user/393076) ###
-
通过的题目
-
最近活动
This person is lazy and didn't join any contests or homework.
题目标签
- 小学生C++趣味编程
- 133
- 循环结构
- 73
- 一本通编程启蒙
- 67
- 函数
- 39
- 顺序结构
- 37
- 来源
- 33
- 基础语法
- 33
- 分支结构
- 21
- 数组
- 16
- 多重循环
- 13
- 多分支结构
- 6
- 二分法
- 2
- 模拟法
- 2
- 指针
- 2
- 字符
- 1