[编程入门]水仙花数判断-题解(C语言代码)这是我能想出来的最简语句了 摘要:思路:循环遍历100~999所有的数找出符合条件的数; 难点:主要是三位数的拆分 三位数的最高位为a/100(取整); 三位数中间位为a/10%10(先取整再取余); 三位数最末位为a%10(…… 题解列表 2019年11月08日 0 点赞 0 评论 455 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,sum,c,d; for(a=100;a<1000;a++) { b=a%10; …… 题解列表 2017年10月07日 0 点赞 1 评论 385 浏览 评分:0.0
[编程入门]水仙花数判断 C++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<153<<endl<<370<<endl<…… 题解列表 2022年05月23日 0 点赞 0 评论 97 浏览 评分:0.0
[编程入门]水仙花数判断-题解(Java代码) 摘要:```java 不知道为啥就是显示不了乘号,b与100,c与10,还有三个b、c、d之间都有乘号 public class sxs { public static void main(Stri…… 题解列表 2020年02月09日 0 点赞 0 评论 267 浏览 评分:0.0
1016: [编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:for i in range(100,1000): i1=i2=i3=0 i1=(int)(i/100) …… 题解列表 2025年01月20日 0 点赞 0 评论 87 浏览 评分:0.0
[编程入门]水仙花数判断-题解(C语言代码) 摘要:题目描述 打印出所有"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该本身。 例如:153是一个水仙花数,因为153=1^3+5^3+3^3。 输出 输出每一个水仙花数,一个数…… 题解列表 2020年02月29日 0 点赞 0 评论 286 浏览 评分:0.0
水仙花数判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ for(int i=100;i<=999;i++){ int n=i, s…… 题解列表 2023年09月14日 0 点赞 0 评论 60 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:注意事项:参考代码1,使用while循环#include "stdio.h"int main(){/*打印出所有"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该本身。 例…… 题解列表 2018年05月02日 0 点赞 0 评论 674 浏览 评分:0.0
100-999的水仙花数 摘要:解题思路:把每个数提出来,然后三次幂注意事项:参考代码:#include<stdio.h>int main(){ int i,a,b,c; for(i=100;i<1000;i++){ …… 题解列表 2023年11月03日 0 点赞 0 评论 87 浏览 评分:0.0
[编程入门]水仙花数判断-题解(Python代码) 摘要:解题思路:暴力枚举注意事项:字符串与数字的转化参考代码:for i in range(1,10): for q in range(10): for w in range(10): …… 题解列表 2020年11月15日 0 点赞 0 评论 250 浏览 评分:0.0