编写题解 1008: [编程入门]成绩评定 摘要:解题思路:题目要求根据输入的整数成绩(0-100),输出对应的成绩等级。成绩等级分为 ‘A’、‘B’、‘C’、‘D’ 和 ‘E’,具体分级标准如下:90分及以上为 ‘A’80-89分为 ‘B’70-7…… 题解列表 2024年12月05日 6 点赞 1 评论 1716 浏览 评分:10.0
[编程入门]自定义函数之字符串连接 两行搞定! 摘要:解题思路:注意事项: 哈哈哈哈哈哈,没骗你吧参考代码:#include"bits/stdc++.h" using namespace std;int main(){st…… 题解列表 2024年12月06日 4 点赞 2 评论 419 浏览 评分:10.0
2797 最高的分数(简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n; int a[100]; scanf("%d",&n); for(i=0…… 题解列表 2024年12月06日 0 点赞 0 评论 245 浏览 评分:10.0
题解 1012: [编程入门]字符串分类统计新手方法 摘要:#include <stdio.h> int main () { char ch[200]; int i = 0; for (i=0;ch[i]<200;i++){ scanf …… 题解列表 2024年12月06日 3 点赞 0 评论 1104 浏览 评分:10.0
函数求解最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gcd(int m, int n);int lcd(int m, int n);int main(void){ int m…… 题解列表 2024年12月06日 4 点赞 0 评论 1736 浏览 评分:10.0
编写题解 1139: C语言训练-求素数问题 摘要:```cpp #include #include using namespace std; const int N = 1e4 + 10; int prime[N]; int isprim…… 题解列表 2024年12月07日 1 点赞 0 评论 291 浏览 评分:10.0
编写题解 1073: 弟弟的作业 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h> //atio函数,将字符串转换为数字.#include<string.h> …… 题解列表 2024年12月07日 2 点赞 0 评论 539 浏览 评分:10.0
蓝桥杯2024年第十五届省赛真题-好数 摘要: #include int main() { int n; int d = 0;; int u = 1; int c = 0;…… 题解列表 2024年12月07日 1 点赞 0 评论 645 浏览 评分:10.0
1033: [编程入门]自定义函数之字符提取 摘要: #include int main() { char a[1000]; char s[1000]; gets(a); int…… 题解列表 2024年12月07日 0 点赞 0 评论 659 浏览 评分:10.0
一个简单的自定义函数 来处理 素数 摘要:解题思路:试除法判断scanf输入的数 是or不是素数注意事项:循环的优化参考代码:#include <stdio.h>#include <math.h>int is_Prime(int a){ in…… 题解列表 2024年12月07日 1 点赞 0 评论 865 浏览 评分:10.0