C语言训练-"水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int number; int originalNumber, remainder, resul…… 题解列表 2023年11月06日 0 点赞 0 评论 61 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:用了定义函数来解决,小白一个,有优化请指教参考代码:int m(int q,int x,int y,int n){ int z; z=(x*x*x+y*y*y+n*n*n==q); return z;…… 题解列表 2020年11月19日 0 点赞 0 评论 197 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:这个问题有一个点容易错:水仙花数必须是三位数。 ```c #include int main() { int a,b,yuanshu; scanf("%d",&yuanshu); …… 题解列表 2020年02月11日 0 点赞 0 评论 320 浏览 评分:0.0
输入超过三位数的简单思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, s, g; scanf("%d", &a); b = a / 100; s…… 题解列表 2022年05月19日 0 点赞 0 评论 188 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要: 不解释了,看代码吧。 代码: #include int main() { int a,b,c,d; a=0; b=0; c=0; d=0…… 题解列表 2020年03月03日 0 点赞 0 评论 308 浏览 评分:0.0
很简单的c++方法写的代码 清晰的思路 希望大佬们可以一起讨论 摘要: #include using namespace std; #include int main() { int a; int s…… 题解列表 2023年06月01日 0 点赞 0 评论 107 浏览 评分:0.0
编写题解 1119: C语言训练-"水仙花数"问题1 摘要:参考代码:#include<math.h>int a,len,b=0,num[3]; scanf("%d%n",&a,&len); if(len==3){ num[0…… 题解列表 2021年03月05日 0 点赞 0 评论 291 浏览 评分:0.0
编写题解 1119: C语言训练-"水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int back(int a){ int b,c,d; b = a%10; …… 题解列表 2022年03月19日 0 点赞 0 评论 153 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>int main(){ int a=0; std::cin>>a; int bai,shi,ge; bai=a…… 题解列表 2020年08月27日 0 点赞 0 评论 275 浏览 评分:0.0
1119: C语言训练-"水仙花数"问题1 摘要:```cpp #include using namespace std; int a,b,c; int sxh(int n) { a=n/100; b=n/10%10; c=n%…… 题解列表 2024年07月30日 0 点赞 0 评论 100 浏览 评分:0.0