小南解题---水仙花--68ms 摘要:a=input() if int(a)==int(a[0])**3+int(a[1])**3+int(a[2])**3: print('YES')else: print(&…… 题解列表 2022年08月26日 0 点赞 0 评论 150 浏览 评分:0.0
蓝桥杯算法训练VIP-水仙花 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,a,b,c; scanf("%d",&n); for(i=100;…… 题解列表 2023年01月07日 0 点赞 0 评论 87 浏览 评分:0.0
1647: 蓝桥杯算法训练VIP-水仙花 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; int a=n%10,b=n/1…… 题解列表 2023年04月01日 0 点赞 0 评论 165 浏览 评分: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
c语言代码详细 摘要:解题思路:注意事项:参考代码:int main (){ int a,b,c,d; scanf ("%d",&d); a=d/100; b=d/10%10; c=d%10;…… 题解列表 2024年12月04日 0 点赞 0 评论 70 浏览 评分:0.0