题解 1119: C语言训练-"水仙花数"问题1

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int b,bjg = 0,yx = 0,hx = 0; scanf("%d……

c语言代码详细

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int a,b,c,n;    scanf ("%d",&n); ……

1119简单if循环

摘要:解题思路:把数学公式理解就好了注意事项:参考代码:#include<stdio.h>#include<math.h>#define P(x) pow(x,3)int main(){ int a,b,c……

1119: C语言训练-"水仙花数"问题1

摘要:解题思路:1,倒序。    g = n % 10;%10的结果是他的个位,个位我们用g表示。    n = n / 10;/10是剩下的数。    fn = fn  + g * g * g;这是倒序后……

无聊的星期六

摘要:解题思路:注意事项:参考代码:x=input() if int(x)==sum(((int(x[i])**3) for i in range(3))):     print(1) else: ……

课本上的习题

摘要:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int x; cin >> x;……

C语言--好理解

摘要:解题思路:简单的if语句的使用;注意事项:用pow(n,m)表示立方,不然只有75分。pow(n,m)代表n的m次方;参考代码:#include <stdio.h>int main(){    int……