编写题解 1119: C语言训练-"水仙花数"问题1(循环解决) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,c=0; scanf("%d", &n); int t = n; while (n != 0) …… 题解列表 2024年03月06日 0 点赞 0 评论 160 浏览 评分:9.9
问题一“水仙花数”C语言 摘要:问题在于取位(个位,十位,百位) **/** 取商 **%** 取余 可以从个位开始或者百位开始,按个人喜好 #include …… 题解列表 2022年07月06日 0 点赞 0 评论 258 浏览 评分:9.9
二级C语言-平均值计算常规做法 小白 摘要:``` #include #include // 文件中含有pow函数 int main() { int a,b,c,x; scanf("%d",&x); { a=…… 题解列表 2022年08月02日 0 点赞 0 评论 512 浏览 评分:9.9
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:参考代码:#include<stdio.h> main() { int a,x=0,j,m; scanf("%d",&m); a=m; while(a!=0…… 题解列表 2020年08月28日 0 点赞 0 评论 542 浏览 评分:9.9
1119一行解(Python) 摘要:解题思路:简单题注意事项:要求水仙花数必须为3位数参考代码:基础代码:n = input()len_ = len(n)if len_ == 3 : smr = sum(map(lambda x …… 题解列表 2023年03月08日 0 点赞 0 评论 102 浏览 评分:9.9
数组解决水仙花问题 摘要:解题思路:借用之前的题:数字的处理与判断,的思路。利用数组解决该题注意事项:i,j的取值范围应注意参考代码:#include<stdio.h> int main(void) { int x…… 题解列表 2021年03月02日 0 点赞 1 评论 776 浏览 评分:9.9
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:解题思路:暴力循环找出所有水仙花存入数组,设置标记,然后输入数据与数组中数据比较,数组中有该数标志为1无该数标志为0,最后根据标志输出0或1 ```c #include int main() …… 题解列表 2020年03月09日 0 点赞 0 评论 503 浏览 评分:9.9
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:#include int main() { int a,b,c,d; scanf("%d",&a); if(a/100>0&&a/100…… 题解列表 2019年10月27日 0 点赞 0 评论 734 浏览 评分:9.9
if语句解决水仙花数问题 摘要:参考代码:#include <stdio.h>#include <math.h>int main(){ int n; scanf("%d",&n); if(n>99&&n<1000)…… 题解列表 2023年10月19日 0 点赞 1 评论 42 浏览 评分:9.9
C语言训练-"水仙花数"问题1 摘要:解题思路:提取百位数:a/100(例如:371/100=3)提取十位数:(a/10)%10(例如:371/10=37 37%10=7) 提取个位数:a%10(例如:…… 题解列表 2022年04月13日 0 点赞 0 评论 160 浏览 评分:9.9