题解 1016: [编程入门]水仙花数判断

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

筛选

用for循环遍历数据panduan

摘要:解题思路:注意事项:这个代码能在vs上运行但答案错误不知道为啥参考代码:#include<iostream>using namespace std;int main(){    int a, b, c……

新手常规简易

摘要:解题思路:常规注意事项:参考代码:#include<stdio.h>int main(){    int num=100;    int a,b,c;    for(num==100;(99<num)……

水仙花数判断

摘要:解题思路:根据水仙花数的特点注意事项:缩进参考代码:for i in range(100,1000):    a = i//100    b = i%100//10    c = i%10    if……

[编程入门]水仙花数判断

摘要:解题思路:利用循环,因为是三位数,所以从100一直到999,然后加一个条件的判断就行注意事项:1.注意题目要求每一个数占一行,记得输出时候加换行参考代码:#include<stdio.h>#inclu……

1016: [编程入门]水仙花数判断

摘要:import java.io.*; /**  * 从 100 循环到 1000,用三个 int 分别保存百位、十位和个位。  */ public class Main {     p……