题解列表

筛选

2908: 白细胞计数

摘要:``` #include using namespace std; const int N=310; double a[N]; int main() { int n; cin>>n;……

1754: 字符串排序

摘要: #include using namespace std; const int N=100010; string a[N]; bool cmp(stri……

Java基本语法

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;class Main {    public static void main(String[] args) {    ……

2880: 计算鞍点

摘要:``` #include using namespace std; const int N=10010; int a[6][6]; int main() { int n=5; for……

2098: 两数之和

摘要:```python n ,k = map(int,input().split()) ans =0 def twosum(numbers,target): global ans ……

数列求和Java(含注释)

摘要:解题思路:注意事项:参考代码:package dotcpp; import java.util.Scanner; //一分数序列: 2/1 3/2 5/3 8/5 13/8 21/13..……