[编程入门]三个数最大值(数组) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i = 0; int s[3]; for (i = 0; i < 3; i++…… 题解列表 2023年10月28日 0 点赞 0 评论 315 浏览 评分:9.9
判决素数个数(自定义函数) 摘要:解题思路:在主函数里调用自定义的函数参考代码:#include<iostream>using namespace std;void pss(int x,int y){ int s = 0; int i…… 题解列表 2023年10月28日 0 点赞 0 评论 343 浏览 评分:9.9
1136: C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int hou(int i){ int s; s=i%100; return s;}int qian(int i){ int s,h…… 题解列表 2023年10月28日 0 点赞 0 评论 289 浏览 评分:9.9
暴搜求扫雷游戏地雷数 摘要:首先看这道题的数据范围,明显比较小。所以我们可以直接考虑暴力。 我们可以遍历每一个点,然后分别搜索每个点周围的雷的数量,然后直接输出。 一下是这种方式的代码。 ```cpp #include…… 题解列表 2023年10月28日 0 点赞 0 评论 651 浏览 评分:9.9
优质题解 BFS板子题(C++版) 摘要:# 分析题意 这道题是一道BFS的板子题,属于是在网格中寻找最短路。在求解无边权最短路问题时,我们一般都可以采用BFS来做。 # BFS BFS简而言之,就是优先考虑离当前节点最近的所有点,再依…… 题解列表 2023年10月29日 0 点赞 0 评论 1040 浏览 评分:9.9
三种方式实现输出计算该日在本年中是第几天 摘要:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>typedef struct time { //这里的time是结…… 题解列表 2023年10月29日 0 点赞 0 评论 309 浏览 评分:9.9
自定义函数之数字后移 摘要:解题思路:先输出最后m位数,再输出前面的数参考代码:#include <stdio.h>void aa(int m,int n,int a[100]){ int i; for(i=n-m;i<n;i+…… 题解列表 2023年10月29日 0 点赞 1 评论 231 浏览 评分:9.9
分段函数!!! 摘要:解题思路:注意事项:参考代码:n=float(input())0<=n<=20a1=2.5-na2=2-1.5*(n-3)*(n-3)a3=n/2-1.5if 0<=n<5: print("%.…… 题解列表 2023年10月29日 0 点赞 1 评论 424 浏览 评分:9.9
两种方法实现成绩记录 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>struct student { c…… 题解列表 2023年10月29日 0 点赞 0 评论 304 浏览 评分:9.9
链表合并问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>// 定义链表结构体typedef struct node { int id; …… 题解列表 2023年10月29日 0 点赞 0 评论 324 浏览 评分:9.9