2880: 计算鞍点 摘要:```cpp#includeusing namespace std;int main(){ int a,b,x; a = 5; b = 5; b…… 题解列表 2025年06月10日 1 点赞 0 评论 62 浏览 评分:10.0
求整数的和与均值 摘要:解题思路:注意事项:参考代码:int main(){ int n = 0; scanf("%d", &n);…… 题解列表 2025年06月13日 1 点赞 0 评论 67 浏览 评分:10.0
最高的分数 摘要:解题思路:注意事项:参考代码:int main(){ int n = 0; scanf("%d", &n);…… 题解列表 2025年06月13日 1 点赞 0 评论 36 浏览 评分:10.0
新手查看满足条件的数累加 摘要:解题思路:注意事项:参考代码:这个是使用的是whileint main(){ int m = 0; int n = 0; scanf("%d %d", &m, &n…… 题解列表 2025年06月15日 1 点赞 0 评论 35 浏览 评分:10.0
c++解法(新手) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c=0…… 题解列表 2025年06月15日 0 点赞 0 评论 27 浏览 评分:10.0
c++解法(新手) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d…… 题解列表 2025年06月15日 1 点赞 0 评论 26 浏览 评分:10.0
欢迎各位新手,哪里有不对的请多多包涵,一起学习一起努力 摘要:解题思路: 根据题目给出1<k<100,其中每个数都是大于等于1 小于等于10的数 …… 题解列表 2025年06月16日 1 点赞 0 评论 38 浏览 评分:10.0
代码要求基础,新手就能懂 摘要:解题思路:自己看注意事项:没有参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char str[3][10…… 题解列表 2025年06月17日 1 点赞 1 评论 63 浏览 评分:10.0
分数线的划定很容易,就像她跟我划清界限一样 摘要:#include <stdio.h>#include <math.h>typedef struct{ &nbs…… 题解列表 2025年06月17日 3 点赞 1 评论 56 浏览 评分:10.0
C二级辅导-阶乘数列 (C语言代码) 摘要:这个题,求阶乘和,循环遍历就可以了,不用双重个循环,每次计算阶乘和,然后累加就可以主要注意数值的大小,用int肯定放不下的,必须用double,并且中间的阶乘结果也要用double才能不会出现答案错误…… 题解列表 2017年06月06日 30 点赞 23 评论 10717 浏览 评分:9.9