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;这是倒序后……
编写题解 1119: C语言训练-"水仙花数"问题1(循环解决)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,c=0; scanf("%d", &n); int t = n; while (n != 0) ……
C语言训练-"水仙花数"问题1
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int number; int originalNumber, remainder, resul……
if语句解决水仙花数问题
摘要:参考代码:#include <stdio.h>#include <math.h>int main(){ int n; scanf("%d",&n); if(n>99&&n<1000)……
水仙花数-for循环
摘要:解题思路:注意事项: 经历for循环之后n的值会变化参考代码: #include<iostream> using namespace std; int main() { i……