题解列表

筛选

字符与数字的转换,列表求和

摘要:解题思路:外层循环保证持续输入,列表d需要结束后恢复空列表注意事项:参考代码:while True:    a=int(input())    d=[]    for i in str(a):    ……

2056:汉诺塔(c++代码)

摘要:解题思路:#include<bits/stdc++.h> using namespace std; int A=1,B=2,C=3; void hano(int n) { int i=1;……

阶乘计算python

摘要:python自带大整数也可直接暴力求解 https://www.bilibili.com/video/BV1oq4y1w7RF?share_source=copy_web 这里还是用到列表,用一个……