拆分位数 (C语言代码) 摘要:#include<stdio.h> int main() { int a,b,c,x; scanf("%d",&x); a =  题解列表 2017年06月30日 19 点赞 3 评论 1761 浏览 评分:9.3
拆分位数 (C++代码)用char简单粗暴,嗯 摘要:解题思路:用char简单粗暴,嗯注意事项:参考代码:#include <stdio.h> int main() { char a, b, c; while (scanf("%…… 题解列表 2017年07月30日 4 点赞 4 评论 1204 浏览 评分:9.3
点我有惊喜!你懂得! 摘要:解题思路:愉快的心情才能使自己身心投入!每题笑话: 下雨天看着来往的行人都打着伞,而没人疼没人爱的我却没有伞,于是,大雨中我唱起了一首歌,打伞滴子孙哟参考代码:#include<std…… 题解列表 2017年08月09日 49 点赞 17 评论 2271 浏览 评分:6.8
拆分位数 (C语言代码) 摘要:解题思路:三位数除100得到百位数字三位数减去百位数得到十位数, 然后再除10得到十位数.个位数就等于三位数减去百位数再减去十位数.注意事项:无参考代码:#include <stdio.h> i…… 题解列表 2017年09月12日 1 点赞 10 评论 1481 浏览 评分:8.9
拆分位数 (C语言代码) 摘要:解题思路:分别取个十位的数字进行拼接,百位就是除以100,十位就是除以10,个位就是除以1注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,num…… 题解列表 2017年10月27日 0 点赞 0 评论 727 浏览 评分:0.0
拆分位数 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(){ int a,b,c,x; scanf("%d",&x); a = x%10; \\将x取10的余数,余数一定是个…… 题解列表 2017年11月03日 0 点赞 0 评论 614 浏览 评分:0.0
拆分位数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c,number;scanf("%d",&number);a=number/100;b=(numb…… 题解列表 2017年12月04日 1 点赞 0 评论 557 浏览 评分:0.0
WU-拆分位数 (C++代码) 摘要:解题思路:用string 来解题比较参考代码:#include<iostream> #include<cstring> using namespace std; int main() { s…… 题解列表 2017年12月10日 2 点赞 0 评论 994 浏览 评分:0.0
拆分位数 (C语言代码) 摘要:#include <stdio.h> #define Pi 3.1415 int main() { int x,y,z,a; scanf("%d",&a); x=a%10; y…… 题解列表 2017年12月11日 0 点赞 0 评论 605 浏览 评分:0.0
拆分位数--循环结构 摘要:解题思路:用循环结构注意事项:3位数(i<3)参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int num,i,a[3],j=1; …… 题解列表 2017年12月16日 0 点赞 0 评论 621 浏览 评分:0.0