/ 科创班 /

记录详情

Accepted

/in/foo.c: In function 'main':
/in/foo.c:10:5: warning: 'gets' is deprecated [-Wdeprecated-declarations]
     gets(line);
     ^~~~
In file included from /in/foo.c:1:0:
/usr/include/stdio.h:640:14: note: declared here
 extern char *gets (char *__s) __wur __attribute_deprecated__;
              ^~~~
/in/foo.c: In function 'longest':
/in/foo.c:46:12: warning: 'point' may be used uninitialized in this function [-Wmaybe-uninitialized]
     return (place);
            ^
/tmp/ccz7SJKK.o: In function `main':
foo.c:(.text.startup+0x9): warning: the `gets' function is dangerous and should not be used.
# 状态 耗时 内存占用
#1 Accepted 2ms 256.0 KiB

代码

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
    int alphabetic(char c);
    int longest(char[]);
    int i;
    char line[100];
    gets(line);
    for (i=longest(line);alphabetic(line[i]);i++)
        printf("%c",line[i]);
    printf("\n");
    return 0;
}
int alphabetic(char c)
{
    if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))
        return (1);
    else
        return (0);
}
int longest(char string[])
{
    int len=0,length=0,flag=1,place=0,point,i;
    for (i=0;i<=strlen(string);i++)
        if(alphabetic(string[i]))
            if(flag)
                {
                    point=i;
                    flag=0;
                }
            else
                len++;
        else
        {
            flag=1;
            if(len>=length)

            {
                length=len;
                place=point;
                len=0;
            }
        }
    return (place);
}

信息

递交者
类型
递交
题目
输出最长单词
题目数据
下载
语言
C
递交时间
2018-05-13 11:32:23
评测时间
2018-05-13 11:32:23
评测机
分数
10
总耗时
2ms
峰值内存
256.0 KiB