Minesweeper(水题) 摘要:```c #include //题目挺简单的,细心就好,唯一要注意的就是逐个输入字符要耀getchar忽略掉输入的换行。 int main(){ int n,m,i,j,k=0; ch…… 题解列表 2023年01月13日 0 点赞 0 评论 409 浏览 评分:9.9
两种方法编写题解 1023: [编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<iomanip>using namespace std;int main() { …… 题解列表 2023年01月13日 0 点赞 0 评论 313 浏览 评分:0.0
2794:Hello, World! 摘要:解题思路: 直接输出Hello, World!即可。参考代码:#include<iostream>using namespace std;int main(){ cout<<"Hello, W…… 题解列表 2023年01月13日 0 点赞 0 评论 457 浏览 评分:7.3
[编程入门]链表合并 60行不到解决战斗 摘要: # **[编程入门]链表合并** #include typedef struct st { int id; int score; …… 题解列表 2023年01月13日 0 点赞 0 评论 306 浏览 评分:9.9
关于数字后移问题本质是下表和元素的关系 摘要:解题思路:就是下标和元素的关系注重好,画个图就可以自己看明白了注意事项:下标越界参考代码:#include <stdio.h>void f(){ int nums[50] ; int n ; scan…… 题解列表 2023年01月13日 0 点赞 0 评论 319 浏览 评分:9.9
2175: 信息学奥赛一本通T1250-The Castle 摘要:解题思路:熟练地运用位运算符,并使用广搜进行搜索。不懂可以看这里哦!注意事项:增量顺序不要改!参考代码:#include<bits/stdc++.h> using namespace std; i…… 题解列表 2023年01月13日 0 点赞 0 评论 408 浏览 评分:7.0
2225: 蓝桥杯算法训练-出现次数最多的整数 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年01月13日 0 点赞 0 评论 322 浏览 评分:9.9
容易看懂c语言 摘要:解题思路:两个数据有联系,用结构体 ,用冒泡法排序注意事项:交换的中间变量要为相同的结构体类型参考代码:#include<stdio.h>#include<string.h>typedef struc…… 题解列表 2023年01月13日 0 点赞 0 评论 406 浏览 评分:0.0
1346: 数字三角形4 摘要:```cpp #include using namespace std; int ij[27][27]; int main() { int n,answer=-1; ci…… 题解列表 2023年01月13日 0 点赞 0 评论 689 浏览 评分:9.9
1351: 数字三角形4 摘要:```cpp #include using namespace std; int arr[30][30]; int main() { int n,x,y; cin>>n;…… 题解列表 2023年01月13日 0 点赞 0 评论 524 浏览 评分:9.9