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