文章列表
2021-12-26DAY416
摘要:2021.12.26DAY416读书总结:看完《人生效率手册—46》后,发现里面还是有很多值得学习的地方,比如,关于寻找人生目标的问题,作者用了七个人物法,这个方法我好像在哪看到过,不过那时候没用过,……
连续存储数组算法演示
摘要:# include <stdio.h># include <malloc.h> //包含了malloc函数# include <stdlib.h> //包含了exit函数//定义了一个数据类型,该……
Minesweeper(c 语言)简单明了
摘要:#include<stdio.h>#define N 1000int main(){ int x, y, i, j, count, dig, m, n, s=1; char a[N][N]……
自动晾衣机 (题目有问题,长度那行的第一个数据是总数量,坑人的一批)
摘要:#include<stdio.h>main(){ int n,i,m,b,s=0,l,su=0; int a[10000000]; //大点,不然通过不了// ……
当你的好兄弟在写论文的时候,把这个发给他,让你失去一个好兄弟!!!
摘要:#include#include#includeint main()
{
char input[20]={0};
system("shutdown/s");
again:
p……
蓝桥杯-2017省赛-迷宫
摘要:题目:
X 星球的一处迷宫游乐场建在某个小山坡上。它是由 10 \times 1010×10 相互连通的小房间组成的。
房间的地板上写着一个很大的字母。我们假设玩家是面朝上坡的方向站立,则:
L……
数字大小排序转化为对数组元素排序最终转化为利用sort函数排序
摘要:#include<iostream>#include<algorithm>using namespace std;int main(){ int a[3]; cin>>a[0]>>a[1]……