C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要: ``` #include #include int main() { int a, b, c,d; scanf("%d", &a); d = a / 100 % 1…… 题解列表 2020年02月05日 0 点赞 1 评论 372 浏览 评分:6.0
水仙花数,挺有意思的~~ 摘要:解题思路:首先控制输入的数据是个三位数;再将个,十,百位上的数字表示出来;最后利用if判断完成。注意事项:参考代码:#include<stdio.h>int main(){ int n…… 题解列表 2021年08月11日 0 点赞 0 评论 320 浏览 评分:6.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:```c #include int main() { int a, b1, b2,b3,key,n; scanf("%d", &a); b1 = a / 100; b2 =…… 题解列表 2020年04月14日 0 点赞 0 评论 325 浏览 评分:6.0
C语言训练-"水仙花数"问题1-题解(Python代码) 摘要:题目给出了“水仙花数”的定义,直接对输入数据进行验证即可。 ```python x=input() print(1 if int(x)==int(x[0])**3+int(x[1])**3+in…… 题解列表 2019年09月07日 0 点赞 0 评论 884 浏览 评分:6.0
优质题解 C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:解题思路: 让我们来解剖一下题目: **判断一个数是否为"水仙花数",所谓"水仙花数"是指这样的一个数:首先是一个三位数,其次,其各位数字的立方和等于该数本身。例如:371是一个"水仙花数",37…… 题解列表 2019年11月18日 0 点赞 7 评论 3748 浏览 评分:5.9
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:思路:先分解 3位数中,个位,十位,百位的数字,然后求水仙花数 ```c #include #include int main() { int a; scanf("%d",&a); …… 题解列表 2019年09月29日 0 点赞 1 评论 480 浏览 评分:5.0
C语言训练-"水仙花数"问题1-题解(C++代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年02月06日 0 点赞 0 评论 361 浏览 评分:2.0
1119: C语言训练-"水仙花数"问题1 摘要:```cpp #include using namespace std; int a,b,c; int sxh(int n) { a=n/100; b=n/10%10; c=n%…… 题解列表 2024年07月30日 0 点赞 0 评论 100 浏览 评分:0.0
菜鸟级别-p(水仙花数判断) 摘要:解题思路:首先了解什么是水仙花数,进而获取一个三位数的每一项数字,最后进行立方和判断注意事项:参考代码:#include<stdio.h>int main(){int a;scanf("%d\n",&…… 题解列表 2022年08月02日 0 点赞 0 评论 102 浏览 评分:0.0