自定义函数之字符类型统计 摘要: #include #include using namespace std; void fun(char a[]) { int …… 题解列表 2022年10月11日 0 点赞 0 评论 334 浏览 评分:0.0
校门外的树 摘要: #include using namespace std; int main() { int L, M, x, y, num = 0; …… 题解列表 2022年10月11日 0 点赞 0 评论 327 浏览 评分:9.9
蓝桥杯算法训练-出现次数最多的整数(Java) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] …… 题解列表 2022年10月11日 0 点赞 0 评论 463 浏览 评分:9.9
蓝桥杯算法提高VIP-夺宝奇兵(java) 摘要:解题思路注意事项:参考代码:import java.util.Scanner; public class P1514 { public static void main(String[] a…… 题解列表 2022年10月11日 0 点赞 1 评论 281 浏览 评分:9.9
自定义函数之数字分离 摘要: #include #include using namespace std; void fun(int i) { int a, b, c, …… 题解列表 2022年10月11日 0 点赞 0 评论 348 浏览 评分:0.0
自定义函数之字符提取 摘要: #include #include using namespace std; void fun(char a[],char b[]) { i…… 题解列表 2022年10月11日 0 点赞 0 评论 367 浏览 评分:0.0
自定义函数之字符串连接 摘要: #include using namespace std; void fun(string s1, string s2) { cout s1 >> …… 题解列表 2022年10月11日 0 点赞 0 评论 313 浏览 评分:0.0
自定义函数之字符串反转 摘要: #include #include using namespace std; void fun(char a[], char b[]) { …… 题解列表 2022年10月11日 0 点赞 0 评论 326 浏览 评分:0.0
二维数组的转置 摘要: #include using namespace std; void fun() { int a[3][3], i, j,t; for (…… 题解列表 2022年10月11日 0 点赞 0 评论 375 浏览 评分:0.0
自定义函数求一元二次方程 摘要: #include #include #include using namespace std; float a, b, c, d, x1, x2; …… 题解列表 2022年10月11日 0 点赞 0 评论 327 浏览 评分:0.0