1108: 守望者的逃离 摘要:```cpp #include using namespace std; int m,s,t; int main() { cin>>m>>s>>t; int s1=0,s…… 题解列表 2022年09月04日 0 点赞 0 评论 383 浏览 评分:6.0
编写题解 2281: 蓝桥杯2018年第九届真题-次数差 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string s="abcdefghigklmn…… 题解列表 2022年09月04日 0 点赞 0 评论 324 浏览 评分:0.0
编写题解 1046: [编程入门]自定义函数之数字后移 摘要:解题思路:注意题目要求,需要设计函数注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h…… 题解列表 2022年09月05日 0 点赞 0 评论 430 浏览 评分:0.0
编写题解 1031: [编程入门]自定义函数之字符串反转 摘要:解题思路: 输入字符串→测量字符串的长度→反转:只需要将第一位和最后一位调换位置即可,依次类推→中止条件:左下标数等有右下标数;注意事项:参考代码:#include <stdio.h>#include…… 题解列表 2022年09月05日 0 点赞 0 评论 417 浏览 评分:0.0
编写题解 1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>void fcn(char *arr1, char *ar…… 题解列表 2022年09月05日 0 点赞 0 评论 314 浏览 评分:0.0
2664: 蓝桥杯2022年第十三届省赛真题-求和 摘要:# 解题思路 拿部分分思维:直接按照规矩,两两相乘再相加: ````cpp #include using namespace std; const int maxn = 200005…… 题解列表 2022年09月05日 0 点赞 0 评论 1123 浏览 评分:0.0
paul: C语言数组后移--较易理解版本 摘要:#include const int N; int back(int a[],int b[],int m); int main(){ int i,m; scanf("%d"…… 题解列表 2022年09月05日 0 点赞 0 评论 306 浏览 评分:7.0
[编程入门]二维数组的转置 摘要:解题思路:输入二维数组,通过坐标关系直接输出数组注意事项:输出时注意三个换一行参考代码:#include<iostream>using namespace std;int main(){ int…… 题解列表 2022年09月05日 0 点赞 0 评论 333 浏览 评分:9.9
二级C语言-同因查找 摘要:解题思路:可以分别对2 3 7取余再想与,也可以直接对42取余注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){int i;for(i=1…… 题解列表 2022年09月05日 0 点赞 0 评论 311 浏览 评分:0.0
自定义函数之字符类型统计 摘要:解题思路: 原题:编写一函数,由实参传来一个字符串,统计此字符串中字母、数字、空格和其它字符的个数,在主函数中输入字符串以及输出上述结果。 只要结果,别输出什么提示信息。 思路…… 题解列表 2022年09月05日 0 点赞 0 评论 383 浏览 评分:0.0