题解 2848: 基因相关性 摘要: #include using namespace std; int e; double c,z; char a[510],b[510]; in…… 题解列表 2023年12月27日 0 点赞 0 评论 67 浏览 评分:0.0
2848: 基因相关性 摘要:解题思路:注意事项:参考代码:n = float(input())a = input()b = input()c = 0for i,j in zip(a,b): if i == j: …… 题解列表 2024年08月01日 0 点赞 0 评论 109 浏览 评分:0.0
感觉数据有问题 摘要:解题思路:注意事项:使用getline输入字符串时不能ac;直接 cin>> 反而过了,可能是输入的字符串后面有奇怪的空格?参考代码:#include <iostream>#include <stri…… 题解列表 2024年01月31日 0 点赞 0 评论 50 浏览 评分:0.0
基因相关性JAVA 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2848: 基因相关性 import java.util.Scanner; public class t_2848 { …… 题解列表 2024年02月06日 0 点赞 0 评论 59 浏览 评分: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
C语言解碱基对相同 摘要:解题思路:注意事项:别用gets,我也不知道为啥俩gets不能输入两行参考代码:#include<stdio.h>#include<string.h>int main(){ double t,m…… 题解列表 2024年02月15日 0 点赞 0 评论 75 浏览 评分:0.0
基因相关性 摘要:注意事项:%c会读取任何字符,包括空格、制表符和换行符参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ …… 题解列表 2023年11月06日 0 点赞 0 评论 55 浏览 评分:0.0
2848-基因相关性 摘要:解题思路:注意事项:如果本题采用gets()的输入方法,那么会一直报错,不清楚为什么。scanf()就不会报错。参考代码:#include<stdio.h> #include<string.h> …… 题解列表 2023年06月20日 0 点赞 0 评论 80 浏览 评分:0.0
c代码记录之基因相关性(提出问题,用scanf能过,用gets过不了) 摘要:提出问题,用scanf能过,用gets过不了 //用scanf #include #include int main() { cha…… 题解列表 2023年11月29日 0 点赞 0 评论 120 浏览 评分:0.0
基因相关性(不知道为什么用gets,还是fgets,都通过不了,有没有大佬来说一下) 摘要:参考代码: ```c #include #include #define MAX 500 int main() { double c; scanf("%lf",&c); get…… 题解列表 2023年09月21日 0 点赞 0 评论 164 浏览 评分:0.0