点我有惊喜!你懂得! 摘要:解题思路:愉快的心情才能使自己身心投入!每题笑话: 下雨天看着来往的行人都打着伞,而没人疼没人爱的我却没有伞,于是,大雨中我唱起了一首歌,打伞滴子孙哟参考代码:#include<std…… 题解列表 2017年08月09日 49 点赞 17 评论 2354 浏览 评分:6.8
拆分位数-题解(Python代码) 摘要:利用[::-1]列表逆序输出,再循环输出逆序列表的每一个元素 ```python n=input() m=list_1[::-1] for i in m: print(i,end='…… 题解列表 2019年11月27日 0 点赞 0 评论 2142 浏览 评分:6.0
1670: 拆分位数 摘要:解题思路:使用数组注意事项:参考代码:int i,b,a[3]={0}; scanf("%d",&b); for(i=0;i<3;i++){ a[i]=b%10; b/=10;…… 题解列表 2024年11月01日 1 点赞 0 评论 439 浏览 评分:6.0
拆分位数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio> #include<cstdlib> #include<cstring> #include<algorithm> #include…… 题解列表 2018年11月08日 2 点赞 0 评论 839 浏览 评分:5.8
拆分位数-题解(C语言代码) 摘要:注意事项:注意输出顺序参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int g,s,b; g=n%10; s=n/10%10; b=…… 题解列表 2020年12月08日 0 点赞 1 评论 169 浏览 评分:4.7
拆分位数-题解(Java代码)理解不了我退网 摘要: import java.util.Scanner; public class P1670 { public static void main(St…… 题解列表 2020年03月30日 0 点赞 0 评论 552 浏览 评分:2.0
拆分位数 (C语言代码)字符倒着输出 摘要:解题思路:注意事项:参考代码: printf("%c %c %c", getchar(), getchar(), getchar());…… 题解列表 2021年11月20日 0 点赞 0 评论 207 浏览 评分:2.0
WU-拆分位数 (C++代码) 摘要:解题思路:用string 来解题比较参考代码:#include<iostream> #include<cstring> using namespace std; int main() { s…… 题解列表 2017年12月10日 2 点赞 0 评论 1074 浏览 评分:0.0
拆分位数 (C语言代码) 摘要:解题思路:分别取个十位的数字进行拼接,百位就是除以100,十位就是除以10,个位就是除以1注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,num…… 题解列表 2017年10月27日 0 点赞 0 评论 788 浏览 评分: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 评论 656 浏览 评分:0.0