信息学奥赛一本通T1335-连通块 bfs 服了呜呜呜 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量 int n, m, a[1100][1100], kk…… 题解列表 2024年11月30日 0 点赞 0 评论 54 浏览 评分:0.0
信息学奥赛一本通T1334-围圈报数/?/?】【 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个队列,用于存储整数 queue<int> q; int m…… 题解列表 2024年11月29日 0 点赞 0 评论 29 浏览 评分:0.0
信息学奥赛一本通T1333-Blah数集,队列 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义两个整数变量a和n i…… 题解列表 2024年11月29日 0 点赞 0 评论 57 浏览 评分:0.0
来定义个函数吧 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int pxp(char ch){ if(ch>='A'&&ch<='Z&#…… 题解列表 2024年11月29日 1 点赞 0 评论 74 浏览 评分:0.0
[C语言]字符串拷贝——易懂方法 摘要:解题思路:注意事项:一定要注意字符长度要算上结束符哦!并且要在程序中添加结束字符!参考代码:#include<stdio.h>#include<string.h>int main(){int n,i,…… 题解列表 2024年11月29日 0 点赞 0 评论 79 浏览 评分:0.0
字符串判等,,,,,, 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义四个字符串变量,用于存储输入和处…… 题解列表 2024年11月29日 0 点赞 0 评论 54 浏览 评分:0.0
比较简单的代码 摘要:解题思路: 素数是除1和本身之外不能被任何数整除,第一个循环从2到题目要求的数,第二个循环找到2到这个数中间(不包括这个数) 有没有能整除的数,如果没有是素数,反之,不是;…… 题解列表 2024年11月29日 0 点赞 0 评论 313 浏览 评分:0.0
[C语言]函数之整数整理——调用函数求解 摘要:解题思路:主调函数输入输出函数,被调函数处理数字交换注意事项:感觉没什么注意事项嘿嘿参考代码:#include <stdio.h>void fun(int a[10]){ int i; i…… 题解列表 2024年11月29日 0 点赞 0 评论 116 浏览 评分:2.0
这题要求高(注意1.用double类型2.不用pow函数) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,sum=1,a=1; int n,i; sc…… 题解列表 2024年11月29日 0 点赞 0 评论 59 浏览 评分:0.0
解释很清晰的复杂思路(Python) 摘要:解题思路:(1)输入ISBN号码字符串string(2)根据数字Ascll码的范围分批将9位数字和1位识别码按列表和字符串存储(3)对存储9位数字的列表元素整数化处理,按照规则对元素计算加权和(4)对…… 题解列表 2024年11月29日 0 点赞 0 评论 42 浏览 评分:9.0