水仙花数判断(c语言)清晰版
摘要:解题思路:注意事项:参考代码:/*打印出所有"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该本身。 例如:153是一个水仙花数,因为153=1^3+5^3+3^3。 */#incl……
C++输出所有水仙花数
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int i,j; int a,b,c; for(i……
数组存储,循环相除(C++)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int arr[3] = { 0 ……
题解 1016: [编程入门]水仙花数判断 C语言
摘要:解题思路:注意事项:主要考察位数分解参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main(){ int num = 0, i……
题解 1016: [编程入门]水仙花数判断 C语言
摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>int main(){ for(int i=100;i<=999;i++……