题解 2848: 基因相关性

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

筛选

2848: 基因相关性

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

基因相关性(两个数组对比)

摘要:解题思路:依靠循环和数组对比注意事项:注意要用%s 而不是%c 来输入字符串参考代码:#include<stdio.h>#include<string.h>int main(void){    flo……

学习思想与方法

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

2848: 基因相关性

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

基因相关性

摘要:注意事项:%c会读取任何字符,包括空格、制表符和换行符参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ ……

基因问题!!

摘要:解题思路:求比例和输入的阈值比大小注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char a[501],b[501];    ……