题解列表

筛选

基因相关性(简单易懂)

摘要:解题思路:注意事项:注意sum和n的类型。参考代码:#include<stdio.h>#include<string.h>int main(){    int i;    double n,j,k; ……

最简自然数的拆分

摘要:参考代码:#include <iostream> #include <stdlib.h> #include <stdio.h> #include <string.h> using namesp……

1267: A+B Problem题解

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){   int a,b;   cin>>a>>b;   cout<<a+b……

1008: [编程入门]成绩评定题解

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){    int x;    cin >> x;    char sco……