关键词:指针、数组和函数之间地址的传递 摘要:参考代码:#include <stdio.h> #include <math.h> #include <string.h> void sort(char **p,int n) //用于排序的…… 题解列表 2024年11月20日 1 点赞 0 评论 348 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] a…… 题解列表 2024年11月20日 0 点赞 0 评论 205 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:luggage=float(input()) if luggage<=20: print("%.2f"%(luggage*1.68)) else: …… 题解列表 2024年11月20日 0 点赞 0 评论 168 浏览 评分:0.0
小白练习运用递归来写等差数列求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fab(int x){//递归算法if(x==1)//结束递归的条件return 3*x-1;elsereturn 3*x-1+…… 题解列表 2024年11月20日 0 点赞 0 评论 267 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2024年11月20日 0 点赞 0 评论 152 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:days= ['Monday', 'Tuesday', 'Wednesday', 'Thursday', …… 题解列表 2024年11月20日 1 点赞 0 评论 223 浏览 评分:0.0
2986: 判断元素是否存在,递推解法!!! 摘要:解题思路: 注意输入中间有一个逗号,一开始没注意错的都让我怀疑题目有问题了,呜呜呜注意事项:参考代码:#include"bits/stdc++.h" using namespace std; …… 题解列表 2024年11月20日 0 点赞 0 评论 214 浏览 评分:0.0
3022: 流感传染一眼丁真 摘要:解题思路: 遍历数组s在哪有@,有就在另一个数组上标记为1;数组s遍历完后,遍历数组a,在有标记的位置对应数组s[ i ][ j ],后判断是s[ i ][ j ]四个方向是否能被感染;…… 题解列表 2024年11月20日 1 点赞 0 评论 258 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[150]; char b[51]; gets(a); gets(b); …… 题解列表 2024年11月20日 1 点赞 0 评论 475 浏览 评分:0.0
题目 3150: 蓝桥杯2023年第十四届省赛真题-冶炼金属 摘要: #include <bits/stdc++.h> #define int long long #define debuga(v, i) cout << #v << "[" << i << "]…… 题解列表 2024年11月20日 0 点赞 0 评论 323 浏览 评分:0.0