马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本题要求实现一个函数,统计给定字符串中英文字母、空格或回车、数字字符和其他字符的个数。
函数接口定义:void StringCount( char s[] );
其中 char s[] 是用户传入的字符串。函数StringCount须在一行内按照
letter = 英文字母个数, blank = 空格或回车个数, digit = 数字字符个数, other = 其他字符个数
的格式输出。
裁判测试程序样例:#include <stdio.h>#define MAXS 15void StringCount( char s[] );void ReadString( char s[] ); /* 由裁判实现,略去不表 */int main(){ char s[MAXS]; ReadString(s); StringCount(s); return 0;}/* Your function will be put here */
输入样例:aZ &09 Az
输出样例:letter = 4, blank = 3, digit = 2, other = 1
完整代码:#include <stdio.h>
#define MAXS 15
void StringCount( char s[] );
void ReadString( char s[] ); /* 由裁判实现,略去不表 */
int main()
{
char s[MAXS];
ReadString(s);
StringCount(s);
return 0;
}
/* Your function will be put here */
#include <string.h>
void StringCount( char s[] )
{
int i,n;
int letter=0,digit=0,blank=0,other=0;
n=strlen(s);
for(i=0;i<n;i++){
if((s[i]>='a'&&s[i]<='z')||(s[i]>='A'&&s[i]<='Z')){
letter++;
}
else if(s[i]>='0'&&s[i]<='9'){
digit++;
}
else if(s[i]==' '||s[i]=='\n'){
blank++;
}
else other++;
}
printf("letter = %d, blank = %d, digit = %d, other = %d\n",letter,blank,digit,other);
}
1.代码在OJ上提交通过了,但在Dev本地运行不通过;显示 [Error] ld returned 1 exit status;也不存在有
Dev
C程序运行之后没有关的情况;是代码有漏洞吗?
2.
void ReadString( char s[] )
;
/* 由裁判实现,略去不表 */
裁判程序样例中的这个函数如何做用的呢?我还需要用strlen函数统计字符串长度吗?
1. 由于 ReadString 函数没有定义它的函数体(函数体由裁判定义),因此在本地运行报错。
2. 你不用管裁判是如何实现的。
|