题解 2848: 基因相关性

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

筛选

2848: 基因相关性

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() {     char str1[505] = {0}, str……

2848: 基因相关性

摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int main() {     c……

字符串--3.基因相关性

摘要:解题思路: 得用scanf("%s",str)输入字符串,用gets(str)会结果错误,原因可能是复制输入字符的时候有空格;区别:scanf("%s",str)---遇到空格就停止;        ……

基因相关性

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

2848-基因相关性

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

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

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

2848: 基因相关性

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