2848: 基因相关性 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char str1[505] = {0}, str…… 题解列表 2022年10月26日 0 点赞 0 评论 360 浏览 评分:5.5
基因相关性 摘要:解题思路:对应位置进行比较注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ double p; c…… 题解列表 2022年12月08日 0 点赞 1 评论 511 浏览 评分:9.9
基因相关性(两个数组的相似比例) 摘要:```c #include #include //要用到strlen函数 int main() { char a[501], b[501]; float sim; …… 题解列表 2023年01月17日 0 点赞 4 评论 490 浏览 评分:9.9
2848: 基因相关性 摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int main() { c…… 题解列表 2023年03月05日 0 点赞 0 评论 188 浏览 评分:0.0
Python数据有误 摘要:# 关于Python使用长度第一个字符串无法AC的不解 ## 使用第一个字符串长度(即s1) ```python yu = float(input()) s1 = input() s2 = …… 题解列表 2023年03月18日 0 点赞 7 评论 457 浏览 评分:9.9
字符串--3.基因相关性 摘要:解题思路: 得用scanf("%s",str)输入字符串,用gets(str)会结果错误,原因可能是复制输入字符的时候有空格;区别:scanf("%s",str)---遇到空格就停止; …… 题解列表 2023年03月24日 0 点赞 0 评论 122 浏览 评分:0.0
基因相关性 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char a[1010],b[1010]…… 题解列表 2023年04月12日 0 点赞 0 评论 105 浏览 评分:0.0
基因相关性 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年05月19日 0 点赞 0 评论 151 浏览 评分:9.9
2848-基因相关性 摘要:解题思路:注意事项:如果本题采用gets()的输入方法,那么会一直报错,不清楚为什么。scanf()就不会报错。参考代码:#include<stdio.h> #include<string.h> …… 题解列表 2023年06月20日 0 点赞 0 评论 81 浏览 评分:0.0
基因相关性(C++)简单实用 摘要:参考代码:#include <iostream>#include <string>using namespace std;string compareDNA(const string& dna1, c…… 题解列表 2023年07月16日 0 点赞 0 评论 256 浏览 评分:9.9