1119练习答案c语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int x,a,b,c,d; scanf("%d",&x); a=x/100…… 题解列表 2022年11月13日 0 点赞 0 评论 67 浏览 评分:0.0
判断一个数是不是水仙花数 摘要:解题思路:先审清题目,题目要求输出“0”或“1”,题目的关键是设计程序判断一个数是否是水仙花数,将这个问题进一步简化,一这个数是一个三位数,接下来就要分离它的三位数,首先我们先分离百位数,将一个3位数…… 题解列表 2022年12月29日 0 点赞 0 评论 55 浏览 评分:0.0
一种超简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,n,sum=0,m; scanf("%d",&n); m=n; for(int i=…… 题解列表 2022年12月31日 0 点赞 0 评论 77 浏览 评分:0.0
判断三位数以内的水仙花数 摘要:解题思路:直接用水仙花数的定义翻译成c语言注意事项:注意灵活的思路。参考代码:#include <stdio.h>int main(){ int a,b,c,number; scanf("%d",&…… 题解列表 2023年01月08日 0 点赞 0 评论 81 浏览 评分:0.0
新手解题:1119水仙花数 摘要:解题思路: 首先分别取出三位数再求取它们的立方和,最后与输入数值进行对比注意事项:参考代码:#include <iostream>using namespace std;int main(){ …… 题解列表 2023年02月02日 0 点赞 0 评论 98 浏览 评分:9.9
C语言训练-"水仙花数"问题1 简单解法 摘要:解题思路: 一 if else嵌套使用 二 明确求输入数字的各个位数上的数字的方法: 1.结合整形数据类型与除法求特定位数上的数字 …… 题解列表 2023年02月10日 0 点赞 0 评论 93 浏览 评分:9.9
一个彩币的做法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; scanf("%d",&n); pow(n/10…… 题解列表 2023年03月02日 0 点赞 0 评论 64 浏览 评分:0.0
1119一行解(Python) 摘要:解题思路:简单题注意事项:要求水仙花数必须为3位数参考代码:基础代码:n = input()len_ = len(n)if len_ == 3 : smr = sum(map(lambda x …… 题解列表 2023年03月08日 0 点赞 0 评论 102 浏览 评分:9.9
一种较为代码较为简便的方式 摘要:参考代码: #include<stdio.h>#include<stdlib.h>#define cube(a) (a)*(a)*(a) #宏定义三次…… 题解列表 2023年05月31日 0 点赞 0 评论 60 浏览 评分:9.9
很简单的c++方法写的代码 清晰的思路 希望大佬们可以一起讨论 摘要: #include using namespace std; #include int main() { int a; int s…… 题解列表 2023年06月01日 0 点赞 0 评论 101 浏览 评分:0.0