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 评论 164 浏览 评分:9.9
一元n次方程 摘要: 先讨论0的时候,再讨论1的时候以及在首和尾的时候,最后正常情况,我用的是“符号+数字”来排的。#include<stdio.h>#include<math.h> int main(){ …… 文章列表 2022年01月05日 0 点赞 0 评论 203 浏览 评分:9.9
自动晾衣机 (题目有问题,长度那行的第一个数据是总数量,坑人的一批) 摘要:#include<stdio.h>main(){ int n,i,m,b,s=0,l,su=0; int a[10000000]; //大点,不然通过不了// …… 文章列表 2022年01月05日 0 点赞 0 评论 173 浏览 评分:9.9
当你的好兄弟在写论文的时候,把这个发给他,让你失去一个好兄弟!!! 摘要:#include#include#includeint main() { char input[20]={0}; system("shutdown/s"); again: p…… 文章列表 2022年01月05日 0 点赞 0 评论 146 浏览 评分:9.9
大二上学期代码 摘要:第4讲 文字或算式题目的解题技巧(2)1.下列乘法算式中:赛软件 * 比赛 = 软件比拼其中每个汉字代表1个数字(0~9)。相同的汉字代表相同的数字,不同的汉字代表不同的数字。试编程确定使得整个算式成…… 文章列表 2022年01月08日 0 点赞 0 评论 549 浏览 评分:9.9
蓝桥杯-2017省赛-迷宫 摘要:题目: X 星球的一处迷宫游乐场建在某个小山坡上。它是由 10 \times 1010×10 相互连通的小房间组成的。 房间的地板上写着一个很大的字母。我们假设玩家是面朝上坡的方向站立,则: L…… 文章列表 2022年01月15日 0 点赞 0 评论 355 浏览 评分: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 评论 163 浏览 评分:9.9
字符串分类统计--c语言 摘要:这是学习笔记 方法一:自定义函数 解题思路:自定义函数进行统计,主函数只负责输入输出; 本质是ascll码的大小比较; ```c #include #include int main()…… 文章列表 2022年01月18日 0 点赞 0 评论 188 浏览 评分:9.9
数据结构-stl-冒泡排序 摘要:#include<stdio.h>int main(){ int n,t,i,j; scanf("%d",&n); int a[n]; for(i = 0; i < n…… 文章列表 2022年01月21日 0 点赞 0 评论 191 浏览 评分:9.9
python-合并石子 摘要:解题思路(27条消息) 动态规划之合并石子_Zekary的博客-CSDN博客_石子合并问题动态规划注意事项:参考代码:from cmath import inf def f(n): …… 文章列表 2022年01月26日 0 点赞 0 评论 446 浏览 评分:9.9