用循环语句判断每个三位数是否符合水仙花 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,b,c,d,n,i; //scanf("%d\n",&n); for(i…… 题解列表 2021年09月10日 0 点赞 0 评论 254 浏览 评分:9.9
水仙花数判断-三种求解方法 摘要:参考代码:class Solution { //题目描述 //打印出所有"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该本身。 例如:153是一个水仙花数,因为153=1^3+…… 题解列表 2021年09月27日 0 点赞 0 评论 358 浏览 评分:2.0
水仙花数题解 摘要:解题思路:注意事项:参考代码:for i in range(100,1000): s=0 astr=str(i) for j in astr: x=int(j) …… 题解列表 2021年10月04日 0 点赞 0 评论 197 浏览 评分:9.0
水仙花数判断-题解(python代码) 摘要:参考代码:for i in range(100,1000): #遍历所有三位数 &nb 题解列表 2021年10月15日 0 点赞 0 评论 490 浏览 评分:8.3
编写题解 1016: [编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f; for(a=100;a<=999;a++) { b=a%10…… 题解列表 2021年10月21日 0 点赞 0 评论 184 浏览 评分:0.0
非正常解法但是很基础 摘要:解题思路:穷举a,循环求和,判断是否相等,输出。注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,su…… 题解列表 2021年10月25日 0 点赞 0 评论 158 浏览 评分:0.0
[编程入门]水仙花数判断---for循环---(Python) 摘要:Python 满足if条件为水仙花数将数值输出 ```python for i in range(100,1000): if i==((i%10)**3)+((i//10%10)**3…… 题解列表 2021年11月03日 0 点赞 0 评论 480 浏览 评分:6.7
水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,n; for(n=100;n<=999;n++) { a=n…… 题解列表 2021年11月03日 0 点赞 0 评论 158 浏览 评分:0.0
计算水仙花数 摘要:解题思路通过除法与取余将该三位数的每一位分离出来注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,all; int n,i; //sc…… 题解列表 2021年11月30日 0 点赞 0 评论 239 浏览 评分:0.0
编写题解 1016: [编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,a,b,c; for(i=100;i<=999;i++) { a=i/100; c=i%10…… 题解列表 2021年12月05日 0 点赞 0 评论 197 浏览 评分:0.0