我错哪了
Posted xiaohaohaozaici666-fighting
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我错哪了相关的知识,希望对你有一定的参考价值。
请大神指点迷津。。。
#include <cstdio>
#include <cstring>
using namespace std;
int main()
{
int n,i,count=0,k,l;
char a[502];
char b[502];
scanf ("%d",&n);
gets(a);
gets(b);
l=strlen (a);
for (i=0;i<l;i++)
{
if (a[i]==b[i])
{
count++;
}
}
k=count/l;
if (k<n)
{
printf("yes");
}
else printf("no");
return 0;
}
为什么只能读入一行?
以上是关于我错哪了的主要内容,如果未能解决你的问题,请参考以下文章
java解析json,The constructor JSONObject(String) is undefined,错哪了啊??
用函数编程实现计算字符串中子串出现的次数,这个程序不知道错哪了