关于C语言的fget的一道题fget的一道题求代码 5
1个回答
展开全部
//#include "stdafx.h"//vc++6.0加上这一行.
#include "stdio.h"
#include "string.h"
void main(void){
char fst[5002]="",str[5002]="";
int n=0;
printf("Input a string(Uppercase & ' ' only)...\nfst=");
fgets(fst,5000,stdin);
printf("Continue to enter some string(Uppercase & ' ' only)\n");
while(*str != ' '){
fgets(str,5000,stdin);
if(!strcmp(str,fst)) n++;
}
printf("%d\n",n);
}
#include "stdio.h"
#include "string.h"
void main(void){
char fst[5002]="",str[5002]="";
int n=0;
printf("Input a string(Uppercase & ' ' only)...\nfst=");
fgets(fst,5000,stdin);
printf("Continue to enter some string(Uppercase & ' ' only)\n");
while(*str != ' '){
fgets(str,5000,stdin);
if(!strcmp(str,fst)) n++;
}
printf("%d\n",n);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询