题解列表
[编程入门]字符串正反连接-题解(C语言代码)
摘要:解题思路:str1[]输入,str2[]倒叙,str3[]链接注意事项:puts输出str3[]结尾需加'\0'参考代码:#include<stdio.h>#include<strin……
1090: A+B for Input-Output Practice (VI)
摘要:参考代码:#include<iostream>using namespace std;int main(){ int a; int N; while(cin>>N&&N!=NULL) ……
数组距离qdqdqwd
摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "math.h"int main() { int a, b; scanf("%d%d", &a, &b); int ……
drdsgfgfdsgdsfgdfsg
摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "string.h"int main(){ int n; scanf("%d", &n); for (int i =……
用了5种排序算法来解决(Java代码)
摘要:```java
package lanqiao;
import java.math.BigInteger;
import java.util.Scanner;
/*
* 题目 17……
python解法(python)
摘要:解题思路:注意事项:参考代码:n = int(input()) # 输入数for i in range(n): sum = 0 # 定义及初始化 list = input().sp……