蓝桥杯算法训练VIP-水仙花-题解(Python代码)两行 摘要:参考代码:n = input() print("YES") if int(n) == (int(n[0])**3+int(n[1])**3+int(n[2])**3) else print("NO"…… 题解列表 2020年10月07日 0 点赞 0 评论 423 浏览 评分:9.9
编写题解 1647: 蓝桥杯算法训练VIP-水仙花 摘要:跟着思路来解题思路:注意事项:参考代码:import java.util.ArrayList; import java.util.Scanner; public class Text { …… 题解列表 2021年03月21日 0 点赞 0 评论 244 浏览 评分:9.9
蓝桥杯算法训练VIP-水仙花-题解(Java代码) 摘要:解题思路:https://www.dotcpp.com/oj/problem1647.html参考代码:import java.util.Scanner;public class text1 { /*…… 题解列表 2021年01月07日 0 点赞 0 评论 353 浏览 评分:9.9
水仙花(c语言) 摘要:```c #include #include int isflowers(int n); int main() { int n = 0; scanf("%d", &n); …… 题解列表 2023年04月21日 0 点赞 0 评论 192 浏览 评分:9.9
蓝桥杯算法训练VIP-水仙花-题解(Java代码) 摘要:解题思路:/*判断给定的三位数是否 水仙花 数。所谓 水仙花 数* 是指其值等于它本身 每位数字立方和的数。* 例 153 就是一个 水仙花 数。 153=1+125+27 …… 题解列表 2021年01月11日 0 点赞 0 评论 399 浏览 评分:9.9