题解 2848: 基因相关性

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

筛选

2848: 基因相关性

摘要:解题思路:注意事项:参考代码:n = float(input())a = input()b = input()c = 0for i,j in zip(a,b):    if i == j:      ……

感觉数据有问题

摘要:解题思路:注意事项:使用getline输入字符串时不能ac;直接 cin>> 反而过了,可能是输入的字符串后面有奇怪的空格?参考代码:#include <iostream>#include <stri……

基因相关性JAVA

摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2848: 基因相关性 import java.util.Scanner; public class t_2848 { ……

基因相关性

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char a[1010],b[1010]……

C语言解碱基对相同

摘要:解题思路:注意事项:别用gets,我也不知道为啥俩gets不能输入两行参考代码:#include<stdio.h>#include<string.h>int main(){    double t,m……

基因相关性

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

2848-基因相关性

摘要:解题思路:注意事项:如果本题采用gets()的输入方法,那么会一直报错,不清楚为什么。scanf()就不会报错。参考代码:#include<stdio.h> #include<string.h> ……