字符串--3.基因相关性
摘要:解题思路: 得用scanf("%s",str)输入字符串,用gets(str)会结果错误,原因可能是复制输入字符的时候有空格;区别:scanf("%s",str)---遇到空格就停止; ……
c代码记录之基因相关性(提出问题,用scanf能过,用gets过不了)
摘要:提出问题,用scanf能过,用gets过不了
//用scanf
#include
#include
int main()
{
cha……
编写题解 2848: 基因相关性,python超简单
摘要:(python学子仔细读题哦)n = float(input())
DNA1 = input()
DNA2 = input()
# 比对两条DNA序列
matching_pairs = 0 ……
2848: 基因相关性
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
int main()
{
char str1[505] = {0}, str……
2848: 基因相关性(C语言)
摘要: #include
#include
int main()
{
float x;
scanf("%f",&x);
char a[501],b[501];
sca……
Java-易懂详细代码
摘要:注意事项: 比例这部分,不要直接整除避免答案错误参考代码:import java.util.Scanner;
public class ID2848 {
public static v……
Python数据有误
摘要:# 关于Python使用长度第一个字符串无法AC的不解
## 使用第一个字符串长度(即s1)
```python
yu = float(input())
s1 = input()
s2 = ……