优质题解 拆分位数 (C语言代码) 摘要:解题思路: 这个三位数是365,用int定义四个变量:int a,b,c,x; 输入这个三位数数: scanf("%d",&x); 百位:365/10=36余…… 题解列表 2019年01月31日 0 点赞 14 评论 4122 浏览 评分:9.5
拆分位数 (C语言代码) 摘要:#include<stdio.h> int main() { int a,b,c,x; scanf("%d",&x); a =  题解列表 2017年06月30日 19 点赞 3 评论 1829 浏览 评分:9.3
拆分位数 (C++代码)用char简单粗暴,嗯 摘要:解题思路:用char简单粗暴,嗯注意事项:参考代码:#include <stdio.h> int main() { char a, b, c; while (scanf("%…… 题解列表 2017年07月30日 4 点赞 4 评论 1289 浏览 评分:9.3
拆分位数 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2019年03月10日 0 点赞 0 评论 1044 浏览 评分:9.0
拆分位数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#includeint main(){ int a,b,c,X; scanf("%d",&X); a=X/100;//a代表百位上的数 b=(X/…… 题解列表 2020年11月07日 0 点赞 0 评论 613 浏览 评分:9.0
拆分位数(C语言)通用方法,快来看看 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; int t=0; scanf("%d",&a); while(a>0)…… 题解列表 2021年09月24日 0 点赞 0 评论 1291 浏览 评分:9.0
拆分位数 (C语言代码) 摘要:解题思路:三位数除100得到百位数字三位数减去百位数得到十位数, 然后再除10得到十位数.个位数就等于三位数减去百位数再减去十位数.注意事项:无参考代码:#include <stdio.h> i…… 题解列表 2017年09月12日 1 点赞 10 评论 1735 浏览 评分:8.9
C++的看我!!!看我看我1!!!!! 摘要: #include using namespace std; int main() { string s; cin >> s; cout …… 题解列表 2020年03月07日 0 点赞 1 评论 776 浏览 评分:8.9
拆分位数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); printf("%d %d %d",a%10,a…… 题解列表 2020年06月26日 0 点赞 0 评论 1407 浏览 评分:8.8
通用方法,输多少都给你拆开 拆分位数 (C语言代码) 摘要:解题思路:按位取注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); while(n) { …… 题解列表 2019年02月11日 1 点赞 7 评论 1351 浏览 评分:8.5