题解列表
编写题解 1050: [编程入门]结构体之成绩记录(指针)
摘要:#include <stdio.h> // 引入标准输入输出头文件 // 定义学生结构体 struct Student { char number[10]; // 学号 char ……
编写题解 1050: [编程入门]结构体之成绩记录
摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Student{char number[10];char name[10];int score[3];};int main……
oliv_排除法暴力循环
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int sum = 0, arr[4]; for(int i=0; i<4; i++) ……
3209: 蓝桥杯2024年第十五届省赛真题-好数
摘要:解题思路:注意事项:参考代码:def is_good_number(num): k = 1#初始化变量k为1,用于跟踪当前数字的位数 (这里从右边开始,第一位是奇数) while num:……
1257: 超级楼梯(斐波那契递归)动态规划
摘要:```cpp
#include
using namespace std;
int main()
{
int n;
cin >> n;
int m;
while (n--……
题目 1050: [编程入门]结构体之成绩记录
摘要:解题思路:注意事项:参考代码:#include <stdio.h> void input();void print(); int n;struct information{ char num[10]……
1014: [编程入门]阶乘求和
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ ll n,……