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

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

筛选

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

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() {    int number;    int originalNumber, remainder, resul……

三位数的水仙花数

摘要:解题思路:把每位数拿出来,然后判断是不是对的注意事项:参考代码:#include<stdio.h>int main(){    int i,a,b,c;    scanf("%d",&i);//输入三……

if语句解决水仙花数问题

摘要:参考代码:#include <stdio.h>#include <math.h>int main(){    int n;    scanf("%d",&n);    if(n>99&&n<1000)……

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

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b,c,i;    bool p;    cin>>……

水仙花数-for循环

摘要:解题思路:注意事项:  经历for循环之后n的值会变化参考代码:    #include<iostream> using namespace std; int main() {         i……

水仙花数问题1

摘要:解题思路:注意事项:参考代码: public class Main { public static void main(String[] args) {        Scanner sc = new……

认真看,其实很简单

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

一种较为代码较为简便的方式

摘要:参考代码:                #include<stdio.h>#include<stdlib.h>#define cube(a) (a)*(a)*(a)           #宏定义三次……

1119一行解(Python)

摘要:解题思路:简单题注意事项:要求水仙花数必须为3位数参考代码:基础代码:n = input()len_ = len(n)if len_ == 3 :    smr = sum(map(lambda x ……