1156: C语言训练-阿姆斯特朗数 摘要:解题思路:注意事项:提交答案,显示基本正确,格式错误,没看出格式有什么问题。参考代码:#include<stdio.h>int n,m,a,b,c;void fun1(){ for(n=999;…… 题解列表 2022年01月27日 0 点赞 0 评论 257 浏览 评分:0.0
1156: C语言训练-阿姆斯特朗数--讲好两个空格的呢? 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int j,sum; for (int i = 2;i<1000;i++) {…… 题解列表 2024年12月08日 0 点赞 0 评论 100 浏览 评分:0.0
C语言训练-阿姆斯特朗数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int go(int n);int main(){ int i; for(i=2;i<1000;i++) { …… 题解列表 2017年08月12日 0 点赞 0 评论 957 浏览 评分:0.0
C语言训练-阿姆斯特朗数 (C++代码)注意啊,太傻迪奥了 摘要:解题思路: 注意每一个输出的数后面是两个空格!!!!不是一个!!!参考代码:#include<bits/stdc++.h> using namespace std; int main(){ …… 题解列表 2018年11月27日 0 点赞 0 评论 542 浏览 评分: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
做过水仙花数的凑鼠鼠一个 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ int sum=0,t=n; while(t) { sum+=(t%10)*…… 题解列表 2023年03月03日 0 点赞 0 评论 53 浏览 评分:0.0
1156-阿姆斯特朗数(代码简洁,思路清晰) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int res,t; …… 题解列表 2022年10月11日 0 点赞 0 评论 136 浏览 评分: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语言训练-阿姆斯特朗数 (C语言代码) 摘要:解题思路:第一:水仙花的思路,把数给分解成个十百千位;第二:用if来运行条件。注意事项:分解位数的时候不要搞错了,此题就是分解,执行条件,输出就行了。参考代码:#include<stdio.h>int…… 题解列表 2018年03月01日 0 点赞 0 评论 770 浏览 评分:0.0
C语言训练-阿姆斯特朗数 (C语言代码) 摘要:解题思路: 思路比较简单的一道题参考代码:#include <stdio.h>void main(){ int ge,shi,bai; for(int i=2;i<1000;i++…… 题解列表 2019年03月21日 1 点赞 0 评论 281 浏览 评分:0.0