编写题解 1019: [编程入门]自由下落的距离计算 摘要:解题思路:for循环注意事项:求总路程的时候要减去最后一次反弹的高度参考代码:#include<stdio.h>int main(){ int n; float h; scanf("…… 题解列表 2021年12月16日 0 点赞 0 评论 343 浏览 评分:9.9
用二维数组解决问题 摘要:解题思路:我们举一个例子设一个二维数组a[i][j],当N=5的时候这个矩阵是这个样子(里面的数字是随便给的) a[0] a[1] a[2] a[3] a[4]a[0] 1 …… 题解列表 2021年12月16日 0 点赞 0 评论 460 浏览 评分:0.0
Minesweeper(c 语言)简单明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>char sweep(char a[][100],int n,int m){ int i,j,k=0; char coun…… 题解列表 2021年12月16日 0 点赞 1 评论 465 浏览 评分:9.9
构造数字排序(C++) 摘要:解题思路:使用数字排序 控制格式输出注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,…… 题解列表 2021年12月15日 0 点赞 0 评论 591 浏览 评分:9.9
自定义函数之整数处理 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; shuru(a); xunhuan(a); output(a); return 0;…… 题解列表 2021年12月15日 0 点赞 0 评论 367 浏览 评分:0.0
1113: C语言考试练习题_保留字母 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s; cin >> s; for…… 题解列表 2021年12月15日 0 点赞 0 评论 382 浏览 评分:0.0
1019: [编程入门]自由下落的距离计算 摘要:解题思路:把球落下和上升看做一个反弹周期,每个反弹周期经过的距离等于每个反弹周期时反弹高度*3参考代码:#includeint main(){ double m,n,sum=0; scan…… 题解列表 2021年12月15日 0 点赞 0 评论 392 浏览 评分:9.9
1480: 蓝桥杯算法提高VIP-模拟计算器 摘要:无脑 switch 就完事儿了。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cha…… 题解列表 2021年12月15日 0 点赞 0 评论 318 浏览 评分:0.0
1092: A+B for Input-Output Practice 摘要:这题就是前几题的综合,没啥好说的。#include<bits/stdc++.h> using namespace std; int main(){ int n,a,m,sum; …… 题解列表 2021年12月15日 0 点赞 0 评论 582 浏览 评分:0.0
1091: A+B for Input-Output Practice (VII) 摘要:无脑打印即可。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; while(cin>>a…… 题解列表 2021年12月15日 0 点赞 0 评论 658 浏览 评分:0.0