10
17
74
版主
#include<cstdio> #include<iostream> using namespace std; int main() { int len,tot=0; double x; char s1[501],s2[501]; cin>>x>>s1>>s2; //输入s1和s2的某一条基因序列 len=strlen(s1); //求得s1共有多少碱基 for (int i=0;i<len;i++) //循环看是否相同 if(s1[i]==s2[i]) //如果相同就+1 tot++; if ((double)tot/len>=x)//计算相同比例 cout<<"yes"<<endl; else cout<<"no"<<endl; return 0; }
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
小黑屋|东台市机器人学会 ( 苏ICP备2021035350号-1;苏ICP备2021035350号-2;苏ICP备2021035350号-3 )
GMT+8, 2024-11-1 07:43 , Processed in 0.037926 second(s), 28 queries .
Powered by Discuz! X3.4
Copyright © 2001-2020, Tencent Cloud.