题解列表
汤少的随机数(C语言解法)先排序后去重
摘要:解题思路:注意事项:参考代码:#include <iostream>#include<string.h>using namespace std;int main(){int a[100],b,c,d;……
直接根据ASCII表进行输出,减少循环次数
摘要:
#include
#include
int main(){
char str[10000];
int arr[26] = { 0 };
while (gets(str)) {
……
1030: [编程入门]二维数组的转置
摘要:# 自己写的代码
```c
#include
int main()
{
int a[3][3];
int b[3][3];
for(int i=0;i……
1031题: 自定义函数之字符串反转
摘要:# 自己写的代码
```c
#include
#include
int main()
{
char a[20];
gets(a);
int len=0;
len=strl……