题解列表
Yu:2816统计满足条件的4位数个数
摘要:#### 解题思路:
在会如何得到每一位数的情况下再思考此题。
如何得到每一位数的模板如下:
```c++
while(n){ // 当n变为0时循环结束
cout > ……
编写题解 1151: C语言训练-计算一个整数N的阶乘
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……
不与最大数相同的数字之和
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[101];int main(){ int n,t=-1e9;//t ÓÃ……
题解 2907: 不与最大数相同的数字之和
摘要: #include
using namespace std;
int a[110];
int main() {
int n,t=-1e9;
……
1267: A+B Problem
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; c……
1806: [编程基础]输入输出练习之第二个数字
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; ……
1806: [编程基础]输入输出练习之第二个数字
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; ……
2763: 计算(a+b)/c的值
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; ……
1953: 三位数分解
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>d; a=d/……