三位数分解-题解(C语言代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2019年10月31日 0 点赞 0 评论 660 浏览 评分:0.0
szdsfgyffmhghfgdgm 摘要:解题思路:注意事项:参考代码:我不会 #include<iostream>using namespace std;int main(){ int a,b; w…… 题解列表 2023年11月11日 0 点赞 0 评论 86 浏览 评分:0.0
我奔涌的暖流 寻找你的海洋 摘要:解题思路:拆分各个位数,简单上代码注意事项:参考代码:#include<math.h>int main(){ int n; inta,b,c; scanf("%d",&n); a=n/…… 题解列表 2021年07月28日 0 点赞 0 评论 207 浏览 评分:0.0
位数分解(不止于三位) 摘要:解题思路:不同于寻常方法的求解注意事项:该方法运用了函数递归参考代码:void print(int n){ if (n > 9) print(n / 10); printf("%d\n", n % …… 题解列表 2024年01月01日 0 点赞 0 评论 72 浏览 评分:0.0
三位数分解-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main(){ int a; scanf("%d",&…… 题解列表 2020年08月21日 0 点赞 0 评论 214 浏览 评分:0.0
1953 666C语言 good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c,x; scanf ("%d",&x); a=x/1%10;b=x/10%10;c=x/1…… 题解列表 2021年11月01日 0 点赞 0 评论 159 浏览 评分:0.0
三位数分解 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x, gewei, shiwei, baiwei; cin >…… 题解列表 2018年11月23日 0 点赞 0 评论 554 浏览 评分:0.0
三位数分解 摘要:解题思路:分别除以百位,十位,个位,取最后一位余数;注意事项:%10为取最后一位余数;参考代码:#include <stdio.h>int main(){ int x,a,b,c; scanf("%d…… 题解列表 2021年12月06日 0 点赞 0 评论 301 浏览 评分:0.0
三位数分解 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,g,s,b; scanf("%d",&x); b=x/100; s=x/10%10; g=x%10;…… 题解列表 2019年04月21日 0 点赞 0 评论 610 浏览 评分:0.0
三位数分解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,n,i; scanf("%d",&n); for(i=100;…… 题解列表 2023年01月09日 0 点赞 0 评论 99 浏览 评分:0.0