汽水瓶(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 评论 212 浏览 评分: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 评论 385 浏览 评分:9.9
二级C语言-成绩归类 摘要:```cpp #include using namespace std; int main() { int a=0,b=0,c=0,n; do { …… 题解列表 2022年08月17日 0 点赞 0 评论 1314 浏览 评分:9.9
二级C语言-寻找矩阵最值 摘要:```cpp #include using namespace std; int main() { int n,a[7][7],i,j,max,c,s; cin>>n; …… 题解列表 2022年08月17日 0 点赞 2 评论 375 浏览 评分:9.9
二级C语言-温度转换 摘要:ctof是一个自定义的函数,它在这起到了一个温度转换的作用。而在主函数中要通过改变摄氏度的值,重复计算对应的华氏度的值。 参考代码: ```cpp #include using names…… 题解列表 2022年08月17日 0 点赞 0 评论 574 浏览 评分:9.9
蓝桥杯2016年第七届真题-路径之谜(DFS) 摘要:```cpp #include using namespace std; const int N = 21; int topCount[N]; int leftCount[N]; bo…… 题解列表 2022年08月16日 1 点赞 0 评论 375 浏览 评分:10.0
题目 1023: [编程入门]选择排序 摘要: ~~STL大法好~~ 解法:优先队列,也可以叫小根堆。 ```cpp #include #include using namespace std; priority_queue q…… 题解列表 2022年08月16日 0 点赞 0 评论 403 浏览 评分:9.9
二级C语言-分段函数 摘要:```cpp #include #include #include using namespace std; double f(int x) { if(x…… 题解列表 2022年08月16日 0 点赞 0 评论 394 浏览 评分:9.0
二级C语言-自定义函数 摘要:```cpp #include #include using namespace std; double fact(double n) { double sum=1; f…… 题解列表 2022年08月16日 0 点赞 0 评论 925 浏览 评分:9.9
二级C语言-统计字符 摘要:```cpp #include #include using namespace std; int main() { int a=0,b=0,c=0,d=0; char …… 题解列表 2022年08月15日 0 点赞 0 评论 245 浏览 评分:8.0