c语言 水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,z; int q; scanf("%d",&q); x=q/100; …… 题解列表 2021年12月25日 0 点赞 0 评论 122 浏览 评分:0.0
1119: C语言训练-"水仙花数"问题1(python解) 摘要:解题思路:将三位数拆分存入a,b,c进行计算注意事项:参考代码:n=int(input())a=n%10b=n//10%10c=n//100if(a**3+b**3+c**3==n): prin…… 题解列表 2022年01月28日 0 点赞 0 评论 149 浏览 评分:0.0
C语言训练-"水仙花数"问题1 (C语言代码)此为VIP循序渐进的解题思路,没有其他高深的解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; //定义一个整型x s…… 题解列表 2019年01月23日 0 点赞 0 评论 392 浏览 评分:0.0
C语言--好理解 摘要:解题思路:简单的if语句的使用;注意事项:用pow(n,m)表示立方,不然只有75分。pow(n,m)代表n的m次方;参考代码:#include <stdio.h>int main(){ int…… 题解列表 2023年11月18日 0 点赞 0 评论 93 浏览 评分:0.0
C语言训练-"水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;long long n…… 题解列表 2022年05月18日 0 点赞 0 评论 97 浏览 评分:0.0
叙利亚战损版,凑合着看吧 摘要:解题思路:注意事项:分解百位数每个数字参考代码:#include<stdio.h>int main(){ int n,x,y,z,t; scanf("%d",&n); x=n/100…… 题解列表 2022年06月26日 0 点赞 0 评论 280 浏览 评分:0.0
1119题解(菜鸟) 摘要:解题思路:直接简单粗暴求出各位数字再算出他们的立方和与原数比较即可。对于一个数字要得到它的个位数,就用它除以 10 的 0 次方 再对 10 取余要得到它的十位数,就用它除以 10 的 1 次方 再对…… 题解列表 2022年08月01日 0 点赞 0 评论 83 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:用了定义函数来解决,小白一个,有优化请指教参考代码:int m(int q,int x,int y,int n){ int z; z=(x*x*x+y*y*y+n*n*n==q); return z;…… 题解列表 2020年11月19日 0 点赞 0 评论 197 浏览 评分:0.0
解 1119: C语言训练-"水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>void shuixianhua();int x;int main(){ scanf("%d",&…… 题解列表 2021年09月15日 0 点赞 0 评论 96 浏览 评分:0.0
1119练习答案c语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int x,a,b,c,d; scanf("%d",&x); a=x/100…… 题解列表 2022年11月13日 0 点赞 0 评论 73 浏览 评分:0.0