[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; int b=a;…… 题解列表 2025年09月16日 1 点赞 0 评论 497 浏览 评分:2.0
判断素数遍历 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j; int x; &n…… 题解列表 2025年09月16日 0 点赞 0 评论 317 浏览 评分:0.0
C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int a=n;…… 题解列表 2025年09月15日 0 点赞 0 评论 215 浏览 评分:0.0
小白也能看懂 摘要:解题思路:定义一个数组存放9个数,for循环遍历,再定义一个树n放题目要求的数把n和数组里的树比较,小了就替换一直到最后一个数之后就把n放进去了,这时n里是最大的数字,最后直接输出数组的和n即可注意事…… 题解列表 2025年09月15日 2 点赞 0 评论 553 浏览 评分:10.0
二级C语言-计算素数和 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;bool isprime(int a){…… 题解列表 2025年09月15日 0 点赞 0 评论 265 浏览 评分:0.0
二级C语言-计负均正 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; &nb…… 题解列表 2025年09月15日 1 点赞 0 评论 241 浏览 评分:10.0
1054: 二级C语言-计算素数和 摘要:解题思路:注意事项:重要: 素数的定义是大于1且只能被1和自身整除的数参考代码:int isprime(int num){ if(num>1) …… 题解列表 2025年09月14日 0 点赞 0 评论 260 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:设计学生对象的结构体变量,将全局结构体数组做为函数形参,完成函数之间数据的传递。注意事项:在输入ID和NAME时,由于其为字符串数组,所以不需要使用取地址运算符&参考代码:#incl…… 题解列表 2025年09月14日 0 点赞 0 评论 262 浏览 评分:0.0
这个真的超级简单,没得说!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct Student{ char ID[100];  …… 题解列表 2025年09月13日 0 点赞 0 评论 277 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:结构体变量和结构体数组注意事项:学号和姓名不能超过10个字符参考代码:#include<stdio.h>typedef struct{ un…… 题解列表 2025年09月13日 0 点赞 0 评论 247 浏览 评分:0.0