/ 科创班 /

记录详情

Wrong Answer


  
# 状态 耗时 内存占用
#1 Wrong Answer 成绩取消 0ms 0 Bytes

代码

#include<stdio.h>

int letter,digit,space,others;

int main()
{
void count(char []);

char text[80];

//printf("input string:\n");

gets(text);

//printf("string:");

//puts(text);

letter=0;
digit=0;
space=0;
others=0;

count(text);
printf("%d\n%d\n%d\n%d",letter,digit,space,others);
//printf("\nletter:%d\ndigit:%d\nspace:%d\nothers:%d\n",letter,digit,space,others);
return 0;
}

void count(char str[])
{
int i;
for(i=0;str[i]!='\0';i++)
    if((str[i]>='a'&&str[i]<='z')||(str[i]>='A'&&str[i]<='Z'))
       letter++;
    else if(str[i]>='0'&&str[i]<='9')
       digit++;
    else if(str[i]==32)
       space++;
    else
       others++;
}

信息

递交者
类型
递交
题目
7.9统计个数
题目数据
下载
语言
C
递交时间
2018-07-13 16:44:03
评测时间
2018-07-13 16:53:46
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes