2082: 蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[10000];int main(){ cin>>s; int…… 题解列表 2023年11月25日 0 点赞 0 评论 556 浏览 评分:0.0
1018: [编程入门]有规律的数列求和(利用递归解决) 摘要:解题思路:首先声明一下,纯属是为了练习递归才这么写的,当时的第一想法是这与斐波那契数列类似,所以就想到用递归,分子分母从第三项开始就等于前两项的和,则fbnq(i)=fbnq2(i-1)+fbnq2(…… 题解列表 2023年11月25日 0 点赞 0 评论 426 浏览 评分:9.9
2990: 十进制到八进制 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,a[1000],cnt;int main(){ cin>>n; …… 题解列表 2023年11月25日 0 点赞 0 评论 527 浏览 评分:9.9
编写题解 2918: 成绩排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { int k; string s…… 题解列表 2023年11月25日 0 点赞 0 评论 402 浏览 评分:9.9
求矩阵的两对角线上的元素之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,sum1=0,sum2=0,sum; scanf("%d",&n); in…… 题解列表 2023年11月25日 0 点赞 0 评论 298 浏览 评分:0.0
字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; char b[100]; int…… 题解列表 2023年11月25日 0 点赞 0 评论 967 浏览 评分:0.0
题目2009:第一个带类的程序(带set函数) 摘要:```import java.util.Scanner;public class Main { public static void main(String[] args) { M…… 题解列表 2023年11月25日 0 点赞 0 评论 521 浏览 评分:0.0
整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int n,max,min; scanf("%d",&n); int a[n]; f…… 题解列表 2023年11月25日 0 点赞 0 评论 680 浏览 评分:9.9
奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() {int n,gold=0,silver=0,copper=0;scanf("%d",&n);int a[n][…… 题解列表 2023年11月25日 0 点赞 0 评论 774 浏览 评分:9.9
统计字符数(再初始化一个数组存26个字母的出现次数,以每个元素减去'a',得序号来存入数组) 摘要:参考代码: ```c #include #include int main() { int n; scanf("%d",&n); char s[1001]; while(~s…… 题解列表 2023年11月26日 0 点赞 0 评论 434 浏览 评分:0.0