题解 1205: 字符串的修改 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void swap(char *a, char *b) //将两个字符串互换…… 题解列表 2022年03月21日 0 点赞 0 评论 284 浏览 评分:0.0
1030 二维数组的转置 C++ 摘要:解题思路:(1)在主函数中定义二维数组a[i][j],用for循环输入。(2)在自定义的转置函数中用for循环输出a[j][i]。(3)在主函数中调用自定义的置换函数。注意事项:输入a[i][j],输…… 题解列表 2022年03月21日 0 点赞 0 评论 676 浏览 评分:9.9
编写题解 1137: C语言训练-求函数值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>#include<ctype.h>#include<math.h>using namespace …… 题解列表 2022年03月21日 0 点赞 0 评论 289 浏览 评分:0.0
编写题解 1136: C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>#include<ctype.h>#include<math.h>using namespace …… 题解列表 2022年03月21日 0 点赞 0 评论 483 浏览 评分:0.0
1783: 星期判断机 摘要:看清楚题目,0 的时候是 Sunday,第一次时直接踩坑。。import java.util.Scanner; public class Main { public static vo…… 题解列表 2022年03月21日 0 点赞 0 评论 669 浏览 评分:9.9
编写题解 1135: C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月21日 0 点赞 0 评论 747 浏览 评分:0.0
1636: 蓝桥杯算法训练VIP-整除问题 摘要:无脑循环打印。import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2022年03月21日 0 点赞 0 评论 261 浏览 评分:0.0
编写题解 1133: C语言训练-求1+2!+3!+...+N!的和 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月21日 0 点赞 0 评论 407 浏览 评分:0.0
1516: 蓝桥杯算法提高VIP-字符串比较 摘要:入坑 Java 了,可能以后用 C++ 写题会越来越少。第一题 Java,手感还是生疏。import java.util.Scanner; public class Main { pu…… 题解列表 2022年03月21日 0 点赞 0 评论 249 浏览 评分:0.0
编写题解 1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月21日 0 点赞 0 评论 326 浏览 评分:0.0