2021-12-26DAY416 摘要:2021.12.26DAY416读书总结:看完《人生效率手册—46》后,发现里面还是有很多值得学习的地方,比如,关于寻找人生目标的问题,作者用了七个人物法,这个方法我好像在哪看到过,不过那时候没用过,…… 文章列表 2021年12月27日 0 点赞 0 评论 195 浏览 评分:9.9
连续存储数组算法演示 摘要:# include <stdio.h># include <malloc.h> //包含了malloc函数# include <stdlib.h> //包含了exit函数//定义了一个数据类型,该…… 文章列表 2022年01月01日 0 点赞 0 评论 208 浏览 评分:9.9
Minesweeper(c 语言)简单明了 摘要:#include<stdio.h>#define N 1000int main(){ int x, y, i, j, count, dig, m, n, s=1; char a[N][N]…… 文章列表 2022年01月02日 0 点赞 0 评论 222 浏览 评分:9.9
一元n次方程 摘要: 先讨论0的时候,再讨论1的时候以及在首和尾的时候,最后正常情况,我用的是“符号+数字”来排的。#include<stdio.h>#include<math.h> int main(){ …… 文章列表 2022年01月05日 0 点赞 0 评论 257 浏览 评分:9.9
自动晾衣机 (题目有问题,长度那行的第一个数据是总数量,坑人的一批) 摘要:#include<stdio.h>main(){ int n,i,m,b,s=0,l,su=0; int a[10000000]; //大点,不然通过不了// …… 文章列表 2022年01月05日 0 点赞 0 评论 215 浏览 评分:9.9
当你的好兄弟在写论文的时候,把这个发给他,让你失去一个好兄弟!!! 摘要:#include#include#includeint main() { char input[20]={0}; system("shutdown/s"); again: p…… 文章列表 2022年01月05日 0 点赞 0 评论 186 浏览 评分:9.9
大二上学期代码 摘要:第4讲 文字或算式题目的解题技巧(2)1.下列乘法算式中:赛软件 * 比赛 = 软件比拼其中每个汉字代表1个数字(0~9)。相同的汉字代表相同的数字,不同的汉字代表不同的数字。试编程确定使得整个算式成…… 文章列表 2022年01月08日 0 点赞 0 评论 610 浏览 评分:9.9
蓝桥杯-2017省赛-迷宫 摘要:题目: X 星球的一处迷宫游乐场建在某个小山坡上。它是由 10 \times 1010×10 相互连通的小房间组成的。 房间的地板上写着一个很大的字母。我们假设玩家是面朝上坡的方向站立,则: L…… 文章列表 2022年01月15日 0 点赞 0 评论 414 浏览 评分:9.9
数字大小排序转化为对数组元素排序最终转化为利用sort函数排序 摘要:#include<iostream>#include<algorithm>using namespace std;int main(){ int a[3]; cin>>a[0]>>a[1]…… 文章列表 2022年01月17日 0 点赞 0 评论 192 浏览 评分:9.9
字符串分类统计--c语言 摘要:这是学习笔记 方法一:自定义函数 解题思路:自定义函数进行统计,主函数只负责输入输出; 本质是ascll码的大小比较; ```c #include #include int main()…… 文章列表 2022年01月18日 0 点赞 0 评论 229 浏览 评分:9.9