编写题解 1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h> int main() { int n; int j; j = 0; int…… 题解列表 2023年01月10日 0 点赞 0 评论 442 浏览 评分:9.9
2804: 与指定数字相同的数的个数 摘要:```cpp #include using namespace std; int main() { int n,m,a[101],s=0; cin>>n>>m; …… 题解列表 2023年01月10日 0 点赞 0 评论 461 浏览 评分:9.9
2831: 画矩形 摘要:```cpp #include using namespace std; int main() { int a,b,d; char c; cin>>a>>b>>c…… 题解列表 2023年01月10日 0 点赞 0 评论 398 浏览 评分:9.9
[编程入门]第一个HelloWorld程序(题解)C语言代码 摘要:解题思路:这道题很简单,只需要用printf函数将Hello World输入到函数中即可例如:printf("Hello World\n");注意事项:区分大小写注意空格;号不能漏*号不能漏参考代码:…… 题解列表 2023年01月10日 0 点赞 0 评论 337 浏览 评分:9.9
2174Lake Counting 简单BFS(注释很详细) 摘要:解题思路: 1.经典的BFS/DFS问题. 2.与 第2171题:细胞 差不多,但是由于我那个题用的DFS,所以这个题就用BFS.多说一点:1.DFS的递归函数可以很简单地…… 题解列表 2023年01月10日 0 点赞 0 评论 346 浏览 评分:9.9
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码)超简洁 摘要:解题思路:活用replace方法,将元素的增加和删除都转成元素的替换来实现;转换元素的查找,将查找最后一个元素转换成逆序后查找第一个元素;注意事项:这个网站的Python编译器版本过低,不然可以使用r…… 题解列表 2023年01月10日 0 点赞 0 评论 313 浏览 评分:9.9
2836: 数组逆序重放 摘要:```cpp #include using namespace std; int main() { int n,a[101]; cin>>n; for(int i=0;…… 题解列表 2023年01月11日 0 点赞 1 评论 700 浏览 评分:9.9
2894: 肿瘤检测 摘要:```cpp #include using namespace std; int main() { int a[101][101],n,s=0,c=0; cin>>n; …… 题解列表 2023年01月11日 0 点赞 0 评论 359 浏览 评分:9.9
2898: 二维数组回形遍历 摘要:```cpp #include using namespace std; int main() { int row,col,i,j,k,a[101][101],count; …… 题解列表 2023年01月11日 0 点赞 0 评论 441 浏览 评分:9.9
1727: 首字母大写 摘要:```cpp #include #include using namespace std; int main() { char A[100]; while(gets(A)…… 题解列表 2023年01月11日 0 点赞 0 评论 337 浏览 评分:9.9