基因相关性(简单易懂) 摘要:解题思路:注意事项:注意sum和n的类型。参考代码:#include<stdio.h>#include<string.h>int main(){ int i; double n,j,k; …… 题解列表 2024年11月30日 1 点赞 0 评论 138 浏览 评分:9.9
C语言解碱基对相同 摘要:解题思路:注意事项:别用gets,我也不知道为啥俩gets不能输入两行参考代码:#include<stdio.h>#include<string.h>int main(){ double t,m…… 题解列表 2024年02月15日 0 点赞 0 评论 74 浏览 评分:0.0
c代码记录之基因相关性(提出问题,用scanf能过,用gets过不了) 摘要:提出问题,用scanf能过,用gets过不了 //用scanf #include #include int main() { cha…… 题解列表 2023年11月29日 0 点赞 0 评论 120 浏览 评分:0.0
基因问题!! 摘要:解题思路:求比例和输入的阈值比大小注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[501],b[501]; …… 题解列表 2023年11月26日 0 点赞 0 评论 116 浏览 评分:0.0
基因相关性 摘要:注意事项:%c会读取任何字符,包括空格、制表符和换行符参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ …… 题解列表 2023年11月06日 0 点赞 0 评论 55 浏览 评分:0.0
2848: 基因相关性 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[1000],a[1000];int main(){ doubl…… 题解列表 2023年11月04日 0 点赞 0 评论 77 浏览 评分:0.0
基因相关性(两个数组对比) 摘要:解题思路:依靠循环和数组对比注意事项:注意要用%s 而不是%c 来输入字符串参考代码:#include<stdio.h>#include<string.h>int main(void){ flo…… 题解列表 2023年10月22日 0 点赞 0 评论 343 浏览 评分:9.9
基因相关性(不知道为什么用gets,还是fgets,都通过不了,有没有大佬来说一下) 摘要:参考代码: ```c #include #include #define MAX 500 int main() { double c; scanf("%lf",&c); get…… 题解列表 2023年09月21日 0 点赞 0 评论 164 浏览 评分:0.0
2848: 基因相关性(C语言) 摘要: #include #include int main() { float x; scanf("%f",&x); char a[501],b[501]; sca…… 题解列表 2023年08月21日 0 点赞 0 评论 289 浏览 评分:6.4
2848-基因相关性 摘要:解题思路:注意事项:如果本题采用gets()的输入方法,那么会一直报错,不清楚为什么。scanf()就不会报错。参考代码:#include<stdio.h> #include<string.h> …… 题解列表 2023年06月20日 0 点赞 0 评论 80 浏览 评分:0.0