题解 1605: 蓝桥杯算法训练VIP-阿尔法乘积

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

阿尔法乘积——python

摘要:解题思路:注意事项:参考代码:def xh(n):    if len(n) == 1:        return int(n)    else:        a = 1        n = n……

满分阿尔法积

摘要:解题思路:巨坑一定要!!!!!!!!!strip()注意事项:参考代码:s=input().strip()while len(s)!=1:    n=1    for i in s:        i……

阿尔法乘积(简单)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int num; cin >> num; int temp = 1; ……

python-阿尔法乘积

摘要:解题思路:注意事项:读取输入时不加strip()只能得到91分。参考代码:def f(n):                   while(len(n) != 1):           &nbs