二级C语言-成绩归类 摘要:```cpp #include using namespace std; int main() { int a=0,b=0,c=0,n; do { …… 题解列表 2022年08月17日 0 点赞 0 评论 1414 浏览 评分:9.9
二级C语言-阶乘公式求值 摘要:```cpp #include #include using namespace std; long long n; double a[1000],sum=0; void fact(int…… 题解列表 2022年08月17日 0 点赞 0 评论 537 浏览 评分:9.9
汽水瓶(c++纯代码) 摘要:```cpp #include using namespace std; int qishui(int w) { int m=w/3,n=w%3,x,y,sum=0; wh…… 题解列表 2022年08月17日 0 点赞 0 评论 369 浏览 评分:9.9
弟弟的作业 摘要:```c #include int main() { int a,b,c,k,count=0; char x; while(~(k=scanf("%d%c%d=%d…… 题解列表 2022年08月17日 0 点赞 0 评论 723 浏览 评分:9.9
1074: 数字整除 摘要:```cpp #include #include using namespace std; int main() { char m[1050]; int h; …… 题解列表 2022年08月17日 1 点赞 0 评论 483 浏览 评分:9.9
蓝桥杯2022年第十三届省赛真题-重新排序(贪心,差分数组) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e5 + 5…… 题解列表 2022年08月18日 0 点赞 0 评论 1121 浏览 评分:9.9
1098: 陶陶摘苹果 摘要:解题思路:... ... ... ... ... ... ... ... ... ...注意事项:无参考代码:#include<iostream>using namespace std;int mai…… 题解列表 2022年08月18日 0 点赞 0 评论 625 浏览 评分:9.9
[编程入门]数字逆序输出 摘要:解题思路:简单暴力注意事项:参考代码:int main(){ int a, b,c,d,e,f,g,h,i,j ; scanf("%d %d %d %d %d %d %d %d %d %d", &a,…… 题解列表 2022年08月18日 0 点赞 0 评论 534 浏览 评分:9.9
题目 1050: [编程入门]结构体之成绩记录 摘要:```cpp #include #include using namespace std; int n; struct node { string a, b; in…… 题解列表 2022年08月18日 0 点赞 0 评论 558 浏览 评分:9.9
编写题解 1035: [编程入门]自定义函数之字符类型统计 摘要:```c //自定义函数之字符类型统计 #include #include void StrStatic(){ char s[200]; gets(s);//接受输入的字符串,并保…… 题解列表 2022年08月18日 0 点赞 0 评论 490 浏览 评分:9.9