整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int n,max,min; scanf("%d",&n); int a[n]; f…… 题解列表 2023年11月25日 0 点赞 0 评论 587 浏览 评分:9.9
题目2009:第一个带类的程序(带set函数) 摘要:```import java.util.Scanner;public class Main { public static void main(String[] args) { M…… 题解列表 2023年11月25日 0 点赞 0 评论 425 浏览 评分:0.0
字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; char b[100]; int…… 题解列表 2023年11月25日 0 点赞 0 评论 896 浏览 评分:0.0
求矩阵的两对角线上的元素之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,sum1=0,sum2=0,sum; scanf("%d",&n); in…… 题解列表 2023年11月25日 0 点赞 0 评论 218 浏览 评分:0.0
编写题解 2918: 成绩排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { int k; string s…… 题解列表 2023年11月25日 0 点赞 0 评论 277 浏览 评分:9.9
2990: 十进制到八进制 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,a[1000],cnt;int main(){ cin>>n; …… 题解列表 2023年11月25日 0 点赞 0 评论 431 浏览 评分:9.9
1018: [编程入门]有规律的数列求和(利用递归解决) 摘要:解题思路:首先声明一下,纯属是为了练习递归才这么写的,当时的第一想法是这与斐波那契数列类似,所以就想到用递归,分子分母从第三项开始就等于前两项的和,则fbnq(i)=fbnq2(i-1)+fbnq2(…… 题解列表 2023年11月25日 0 点赞 0 评论 325 浏览 评分:9.9
2082: 蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[10000];int main(){ cin>>s; int…… 题解列表 2023年11月25日 0 点赞 0 评论 450 浏览 评分:0.0
2991: 八进制到十进制 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[10000];int main(){ cin>>s; int…… 题解列表 2023年11月25日 0 点赞 0 评论 325 浏览 评分:0.0
最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,k; scanf("%d%d",&a,&b); if(a<b) { …… 题解列表 2023年11月25日 0 点赞 0 评论 416 浏览 评分:0.0