C语言训练-"水仙花数"问题1 (C语言代码) 摘要:解题思路:注意事项:参考代码:# include<stdio.h>int main(){ int i,b,s,g; scanf("%d",&i); if(i/1000==0){ b=i/100; …… 题解列表 2018年04月13日 0 点赞 0 评论 533 浏览 评分:0.0
1119: C语言训练-"水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include #include using namespace std; int main() { int t = 0; cin >> t; …… 题解列表 2022年10月08日 0 点赞 0 评论 95 浏览 评分:0.0
方法很简单 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; int a,b,c; scanf("%d",&x); a=x/100; b=x/10%10; c=…… 题解列表 2021年03月04日 0 点赞 0 评论 141 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(Python代码)python 摘要:```python num= int(input())#输入并且字符转换为浮点型(input返回的是一个字符串) g=int(num%10)#个位 s=int(num/10%10)#十位 …… 题解列表 2019年11月23日 0 点赞 0 评论 1005 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要: 不解释了,看代码吧。 代码: #include int main() { int a,b,c,d; a=0; b=0; c=0; d=0…… 题解列表 2020年03月03日 0 点赞 0 评论 308 浏览 评分:0.0
C语言训练-"水仙花数"问题1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int a,b,c,d,n; scanf ("%d",&n); int …… 题解列表 2017年11月26日 1 点赞 0 评论 870 浏览 评分:0.0
C语言训练-"水仙花数"问题1 摘要:解题思路:判断各位数的立方和与该数本身是否相等,相等输出1,不相等输出0;注意事项:无参考代码:#include<stdio.h>#include<string.h>int a,b,c,d;void …… 题解列表 2022年01月18日 0 点赞 0 评论 145 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:#include<stdio.h>int main(){ int a,b,c=0,i,j; scanf("%d",&a); b=a; for(i=0,j=100;i<3;i++…… 题解列表 2020年07月23日 0 点赞 0 评论 176 浏览 评分:0.0
C语言训练-"水仙花数"问题1 摘要:解题思路:模拟注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c,d;int main(){ cin>>a; b=…… 题解列表 2022年05月05日 0 点赞 0 评论 127 浏览 评分:0.0
C语言训练-"水仙花数"问题1 (C语言代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class 水仙花数 { public static void main(String[] args) {…… 题解列表 2018年05月06日 1 点赞 0 评论 526 浏览 评分:0.0