输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{ int score; …… 题解列表 2022年10月26日 0 点赞 0 评论 415 浏览 评分:0.0
定义宏,判断是否为闰年 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define LEAP_YEAR(y) y%100 ==0 && y%4 ==0 && y…… 题解列表 2022年10月26日 0 点赞 0 评论 349 浏览 评分:0.0
C语言训练-大、小写问题(C++简单) 摘要:#include<iostream> using namespace std; int main() { char a[20]; cin.getline(a,20); …… 题解列表 2022年10月26日 0 点赞 0 评论 449 浏览 评分:9.9
-委派任务(数学题,我直接输出了) 摘要:#include<iostream> using namespace std; int main() { cout<<"A,B,C,F,"; return 0; }解题思路…… 题解列表 2022年10月26日 0 点赞 0 评论 477 浏览 评分:6.0
编写题解 2903: 不高兴的津津 摘要:解题思路:注意事项:max>8参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct Time{ int stime; …… 题解列表 2022年10月26日 0 点赞 0 评论 386 浏览 评分:0.0
电报加密; 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; whil…… 题解列表 2022年10月26日 0 点赞 0 评论 406 浏览 评分:0.0
字符串正反连接(简单C++) 摘要:#include<iostream> using namespace std; #include<string.h> int main() { char s1[50],s2[50];…… 题解列表 2022年10月26日 0 点赞 0 评论 607 浏览 评分:9.3
二级C语言-平均值计算 摘要:``` #include using namespace std; int main() { int arr[10], sum = 0; for (int i = 0; …… 题解列表 2022年10月26日 1 点赞 0 评论 362 浏览 评分:10.0
编写题解 2904: 谁拿了最多奖学金 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{ char name[20]…… 题解列表 2022年10月26日 0 点赞 0 评论 313 浏览 评分:0.0
最简单求法 摘要:解题思路: 初步判断: 想要最简分数,必须是一个奇数 一个偶数。40是偶数,分子必须是奇数。但并不是所有的奇数不能被40整除 再次判断: & 题解列表 2022年10月26日 0 点赞 0 评论 413 浏览 评分:9.9