这个真的超级简单,没得说!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct Student{ char ID[100];  …… 题解列表 2025年09月13日 0 点赞 0 评论 109 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:结构体变量和结构体数组注意事项:学号和姓名不能超过10个字符参考代码:#include<stdio.h>typedef struct{ un…… 题解列表 2025年09月13日 0 点赞 0 评论 111 浏览 评分:0.0
组合数(隔板法)+ 高精度 摘要:解题思路:组合数(隔板法)+ 高精度参考代码:#include <iostream>#include <cstring>#include <algorithm>#i…… 题解列表 2025年09月12日 0 点赞 0 评论 159 浏览 评分:0.0
递推 + 前缀和 摘要:解题思路:递推 + 前缀和注意事项:参考代码:#include <iostream>#include <cstring>#include <algorithm>us…… 题解列表 2025年09月12日 0 点赞 0 评论 154 浏览 评分:0.0
c语言倒过来解题 摘要:解题思路:倒过来 第一天1个 第二天是(1+1)*2 第三天是(4+1)*2........依次类推到第n天 是 (第(n-1)天的量+1)*2注意事项:参考代码:#include<stdio.…… 题解列表 2025年09月10日 0 点赞 0 评论 277 浏览 评分:0.0
c语言数组解法 摘要:参考代码:#include<stdio.h>int main(){ int L,M; int a,b; int arr[10000]={0}; int count=0; scanf(&qu…… 题解列表 2025年09月10日 0 点赞 0 评论 248 浏览 评分:0.0
编写题解 2780: 奇偶数判断 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int i; …… 题解列表 2025年09月10日 0 点赞 0 评论 168 浏览 评分:0.0
编写题解 2779: 输出绝对值 摘要:#include<bits/stdc++.h>using namespace std;int main(){ double i; &nbs…… 题解列表 2025年09月10日 0 点赞 0 评论 158 浏览 评分:0.0
编写题解 2751: 超级玛丽游戏 摘要:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" &…… 题解列表 2025年09月10日 0 点赞 0 评论 128 浏览 评分:0.0
编写题解 1866: 三位数反转 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int i; …… 题解列表 2025年09月10日 0 点赞 0 评论 114 浏览 评分:0.0