题解 1953: 三位数分解

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

三位数分解-题解(Python代码)

摘要:直接使用列表即可 输入之后 逐行输出 使用字符串直接输出应该也可以 题目简单就不多介绍 ```python n = list(str(input())) for i in n: ……

1953: 三位数分解

摘要:解题思路:慢慢分!注意事项:参考代码:#include<iostream> using namespace std; int main() {     int a,b,c,d;     ci……

三位数分解

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int three,ge,shi,bai;    cin>>t……

慢慢分析,很简单

摘要:解题思路:#include<iostream>using namespace std;int main(){    int a,b,c,d;    cin>>a;    b=a%10;    c=a/……

三位数分解 (C语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){    int x;    int a, b, c;    scanf("%d", &x);    a =……

1953: 三位数分解

摘要:解题思路:一行就行了,非常简单啊,凑点字数,为什么不让发啊,字太少?注意事项:参考代码:for i in input():print(i)……