题解列表

筛选

题解 3013: 求小数的某一位

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int a,b,n,c;    cin>>a>>b>……

题解 3013: 求小数的某一位

摘要:解题思路:用for循环来模拟除法的过程注意事项:注意:本题不需要浮点型,用sum累加器存储商,最后输出  。                                              ……

3013: 求小数的某一位

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    long long a,b,n,c;    cin>……

2818: 分离整数的各个数位

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    long long a;    cin>>a;   ……

题解 2819: 数字反转

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    /*way1    long long a;    ……