题解列表
蓝桥杯算法训练VIP-集合运算
摘要:解题思路:一步一步理清思路即可,注意的是去重时判断条件用常量注意事项:参考代码:import java.util.ArrayList;import java.util.Arrays;import ja……
1032题 : 自定义函数之字符串连接
摘要:# 自己写的代码
```c
#include
#include
int main()
{
char a[20];
char b[20];
gets(a);
gets(b)……
1031题: 自定义函数之字符串反转
摘要:# 自己写的代码
```c
#include
#include
int main()
{
char a[20];
gets(a);
int len=0;
len=strl……
1030: [编程入门]二维数组的转置
摘要:# 自己写的代码
```c
#include
int main()
{
int a[3][3];
int b[3][3];
for(int i=0;i……