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