c代码记录之基因相关性(提出问题,用scanf能过,用gets过不了)
摘要:提出问题,用scanf能过,用gets过不了
//用scanf
#include
#include
int main()
{
cha……
字符串--3.基因相关性
摘要:解题思路: 得用scanf("%s",str)输入字符串,用gets(str)会结果错误,原因可能是复制输入字符的时候有空格;区别:scanf("%s",str)---遇到空格就停止; ……
2848: 基因相关性
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[1000],a[1000];int main(){ doubl……
2848-基因相关性
摘要:解题思路:注意事项:如果本题采用gets()的输入方法,那么会一直报错,不清楚为什么。scanf()就不会报错。参考代码:#include<stdio.h>
#include<string.h>
……
基因相关性(不知道为什么用gets,还是fgets,都通过不了,有没有大佬来说一下)
摘要:参考代码:
```c
#include
#include
#define MAX 500
int main()
{
double c;
scanf("%lf",&c);
get……
2848: 基因相关性
摘要:#include<stdio.h>
#include<math.h>
#include<string.h>
# define N 100001
int main()
{
c……