编写题解 1605: 蓝桥杯算法训练VIP-阿尔法乘积 摘要:解题思路:注意事项:参考代码:int main(){ unsigned int a ,sum=1; scanf("%d", &a); if (a < 10)printf("%d",…… 题解列表 2024年04月01日 0 点赞 0 评论 108 浏览 评分:0.0
阿尔法乘积(c语言代码) 摘要:```c #include //4018224312 → 4 * 1 * 8 * 2 * 2 * 4 * 3 * 1 * 2 → 3072 → 3 * 7 * 2 → 42 → …… 题解列表 2023年04月20日 0 点赞 0 评论 326 浏览 评分:9.9
阿尔法乘积——python 摘要:解题思路:注意事项:参考代码:def xh(n): if len(n) == 1: return int(n) else: a = 1 n = n…… 题解列表 2023年03月30日 0 点赞 0 评论 49 浏览 评分:0.0
(fly)1605: 蓝桥杯算法训练VIP-阿尔法乘积(python,递归) 摘要:解题思路:注意事项:参考代码:n=input().strip() def alpha(n): if len(n)==1: return n else: …… 题解列表 2022年04月23日 0 点赞 0 评论 140 浏览 评分:0.0
满分阿尔法积 摘要:解题思路:巨坑一定要!!!!!!!!!strip()注意事项:参考代码:s=input().strip()while len(s)!=1: n=1 for i in s: i…… 题解列表 2022年03月30日 0 点赞 0 评论 171 浏览 评分:9.9
阿尔法乘积(简单) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int num; cin >> num; int temp = 1; …… 题解列表 2022年03月30日 0 点赞 0 评论 501 浏览 评分:9.9
编写题解 1605: 蓝桥杯算法训练VIP-阿尔法乘积 摘要:#include<bits/stdc++.h>using namespace std;int a(int n,int sum){ if(n<10){ return n; } while(n!=0){…… 题解列表 2022年03月29日 0 点赞 0 评论 131 浏览 评分:0.0
python-阿尔法乘积 摘要:解题思路:注意事项:读取输入时不加strip()只能得到91分。参考代码:def f(n): while(len(n) != 1): &nbs 题解列表 2022年01月23日 0 点赞 1 评论 321 浏览 评分:0.0
编写题解 1605: 蓝桥杯算法训练VIP-阿尔法乘积 摘要:解题思路:注意事项:参考代码:def alpha(m): sum=1 for i in m: if i=='0': continue …… 题解列表 2022年01月06日 0 点赞 0 评论 155 浏览 评分:0.0
循环调用方法刚开始老是不循环 摘要: import java.util.ArrayList; import java.util.Iterator; import java.util.Scanner; …… 题解列表 2021年12月30日 0 点赞 0 评论 243 浏览 评分:9.9