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