题解列表

筛选

1313: 字符串的距离

摘要:```cpp #include #include #include using namespace std; int A[2010][2010],len1,len2,k; char s1[……

输出第n名的排序程序

摘要:```c #include int main() { int sum, rank, r[100] = { 0 }, num[100];//r[]数组存放排名,num[]数组存放学号 fl……

利用scanf的特性

摘要:解题思路:注意事项:注意最后一个单词有 . 号参考代码:#include<stdio.h>#include<string.h>int main(){ char str[1000][500]; int ……

python两行代码通过

摘要:##### 关于找到规律之后python两行代码通过这件事 ```python n,s=map(int,input().split()) print ((int(s)+int(2**(n+1)-……

[递归]母牛的故事

摘要:解题思路:注意事项:参考代码:while True:    n=int(input())    l=[1,2,3]    if n==0:        break    else:        f……