题解列表
[字符串复制]Sn的公式求和
摘要:解题思路:注意事项:参考代码:n = int(input())
Sum = 0
for i in range(1, n + 1):
Sum += int('2' * i)……
最简答案 一个一维数组就搞定
摘要:解题思路:x/n+1 可以算出在哪一行x%n+1可以算出在哪一列注意事项:简单无脑,把最后输的行列搞明白就行参考代码:#include<stdio.h>int main(){ int arr[200]……
编写题解 1052: [编程入门]链表合并
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct Student{ int a,b; struct Student*n……
java字符串p型编码
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static String pEncoding(String……
快速排序(c++代码)
摘要:解题思路:注意事项:参考代码:const int MAX = 10;int arr[MAX];void qsort(int l, int r) { if (l > r)return; int i = ……