1783: 星期判断机switch-case 和map容器两种方法解决 摘要:解题思路:注意事项:参考代码:switch-case方法#includeusing namespace std; int main() { int week; cin>>wee…… 题解列表 2023年09月25日 0 点赞 0 评论 181 浏览 评分:0.0
1784: 矩阵的对角线之和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int arr[5][5]; int …… 题解列表 2023年09月25日 0 点赞 0 评论 138 浏览 评分:0.0
1785: 指针/引用练习之交换数字 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int swap(int &a,int &b); int main() { …… 题解列表 2023年09月25日 0 点赞 0 评论 220 浏览 评分:0.0
求长方形行面积问题,主要还是格式问题 摘要:注意事项: 1.输入的长和宽要在一行有空格隔开; 2.输出的周长和面积要是两行,且以C:和S:开头; 3.开头的C和S要是大写的,不然通不过…… 题解列表 2023年09月25日 0 点赞 0 评论 150 浏览 评分:0.0
查找最接近的元素二分 摘要:```cpp #include #include #include using namespace std; typedef long long LL; const int N =1000…… 题解列表 2023年09月25日 0 点赞 0 评论 246 浏览 评分:0.0
不是二分的写法不加以参考 摘要:```cpp #include #include #include #include using namespace std; typedef long long LL; const i…… 题解列表 2023年09月25日 0 点赞 0 评论 227 浏览 评分:0.0
合法C标识符(使用一些函数减少工作量) 摘要:解题思路: 先说下几个会用到的函数,头文件都为 #include: 1.int isalnum(int c) : 判断C是否是字母或者(十进制)数字,如果是,则返回true,反之返回fals…… 题解列表 2023年09月25日 0 点赞 0 评论 198 浏览 评分:0.0
将一个字符数组中的元音音素复制到另一个数组 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void tiqu(char a[],int k,char b[]){int i,j=0;for…… 题解列表 2023年09月25日 0 点赞 0 评论 212 浏览 评分:0.0
1804: 蓝桥杯算法提高- c++_ch02_02 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<bits/stdc++.h> using namespace std; int main(){ in…… 题解列表 2023年09月26日 0 点赞 0 评论 132 浏览 评分:0.0
1805: 蓝桥杯算法提高- c++_ch02_03 摘要:解题思路:把所有结果列举为二维矩阵。注意事项:参考代码:#include<iostream> using namespace std; int main() { int a[3][3]…… 题解列表 2023年09月26日 0 点赞 0 评论 140 浏览 评分:0.0