C语言训练-阿姆斯特朗数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int judge(int x){ char str[5]; …… 题解列表 2018年03月13日 0 点赞 0 评论 826 浏览 评分:0.0
C语言训练-阿姆斯特朗数 (C语言代码)很简洁的代码 摘要:解题思路:1、拆分数字的每一位,按照条件判断即可注意事项:1、参考代码只适用于1000以内的数字参考代码:#include <stdio.h> /*判断是不是阿姆斯特朗数*/ int is_t…… 题解列表 2019年02月01日 1 点赞 1 评论 474 浏览 评分:0.0
直接写就得了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,a,b,c; for(i=2;i<1000;i++) …… 题解列表 2024年11月21日 0 点赞 0 评论 64 浏览 评分:0.0
1156-阿姆斯特朗数(代码简洁,思路清晰) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int res,t; …… 题解列表 2022年10月11日 0 点赞 0 评论 136 浏览 评分:0.0
C语言训练-阿姆斯特朗数 (Java代码)(提交没错,在eclipse上运行不出)简化给我留言 摘要:解题思路:注意事项:参考代码:public class The156 {public static void main(String args[]){for(int i=2;i<1000;i++){ …… 题解列表 2018年05月04日 1 点赞 0 评论 681 浏览 评分:0.0
C语言训练-阿姆斯特朗数-题解(C语言代码) 摘要:阿姆斯特朗数又称水仙花数. 与1119题相识,详情参见1119题https://blog.dotcpp.com/a/68909 与1120题重复,详情参见1120题https://blog.dot…… 题解列表 2021年02月22日 0 点赞 0 评论 398 浏览 评分:0.0
这尼玛太简单了啊 摘要:#include<stdio.h> int judge(int n); int cube(int n); int main(void) { int i; for(i = 2…… 题解列表 2024年12月31日 0 点赞 0 评论 66 浏览 评分:0.0
Hifipsysta-1156题-C语言训练-阿姆斯特朗数(C++代码)字符串转换法 摘要: ```cpp #include #include #include #include using namespace std; bool is_armstrong(int n){ …… 题解列表 2022年01月31日 0 点赞 0 评论 204 浏览 评分:0.0
C语言训练:阿姆斯特朗数 格式错误:一个空格就好了 摘要:解题思路:注意事项:参考代码:#include#includeint main(){int n,a,b,c;for(int i=2;i<1000;i++){ int j=i; while(…… 题解列表 2023年02月08日 0 点赞 0 评论 37 浏览 评分:0.0
C语言训练-阿姆斯特朗数-题解(C++代码) 摘要:```cpp #include using namespace std; int f(int n){ int sum=1; while(1){ n=n/10…… 题解列表 2020年04月19日 0 点赞 0 评论 336 浏览 评分:0.0