解 1119: C语言训练-"水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>void shuixianhua();int x;int main(){ scanf("%d",&…… 题解列表 2021年09月15日 0 点赞 0 评论 93 浏览 评分:0.0
C语言训练-"水仙花数"问题1-(输入数据超过3位的解法拓展)(C++代码) 摘要:**解题思路:** 题目中限制了输入数值的位数为3位,然后进行计算。解法有很多种,而且比较简单。 但是,如果不限制位数,又该如何判定该数是否是“水仙花数”呢? 下面给出我个人的解法,大家可以参…… 题解列表 2021年09月29日 0 点赞 0 评论 540 浏览 评分:9.9
1119难不倒我的嘿嘿C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main (){ int a,b,c,x;scanf("%d",&x); if (x>=100&…… 题解列表 2021年11月07日 0 点赞 0 评论 161 浏览 评分:0.0
C语言训练-"水仙花数"问题1 摘要:解题思路: 拆分数位+逻辑参考代码:#include <stdio.h> int main() { int a, a1, a2, a3, b, panduan; scanf("%d",…… 题解列表 2021年11月12日 0 点赞 0 评论 416 浏览 评分:9.9
C语言训练-"水仙花数"问题 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int n; int main() { int a; cin>…… 题解列表 2021年11月21日 0 点赞 0 评论 212 浏览 评分:0.0
编写题解 1119: C语言训练-"水仙花数"问题1 摘要:解题思路:n = input()sum0 = 0for i in n: sum0 += int(i)**3if sum0 == int(n): print(1)else: print…… 题解列表 2021年12月16日 0 点赞 0 评论 369 浏览 评分:9.9
反其道而行 摘要:解题思路:本题可以使用字符串或直接用数字写,直接用数字过于容易,我们用字符串来写这题,锻炼思维注意事项:用string.h库函数strlen( )来获取字符长度,(整形数字=字符型数字-字符0)->例…… 题解列表 2021年12月21日 0 点赞 0 评论 289 浏览 评分:9.9
c语言 水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,z; int q; scanf("%d",&q); x=q/100; …… 题解列表 2021年12月25日 0 点赞 0 评论 116 浏览 评分:0.0
三位数水仙花数求解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,number; scanf("%d",&number); a=n…… 题解列表 2022年01月10日 0 点赞 2 评论 186 浏览 评分:9.9
C语言训练-"水仙花数"问题1 摘要:解题思路:判断各位数的立方和与该数本身是否相等,相等输出1,不相等输出0;注意事项:无参考代码:#include<stdio.h>#include<string.h>int a,b,c,d;void …… 题解列表 2022年01月18日 0 点赞 0 评论 139 浏览 评分:0.0