/ 科创班 /

记录详情

Wrong Answer

/in/foo.c: In function 'main':
/in/foo.c:10:5: warning: 'gets' is deprecated [-Wdeprecated-declarations]
     gets(str);
     ^~~~
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__;
              ^~~~
/tmp/ccFWMsp3.o: In function `main':
foo.c:(.text.startup+0xe): warning: the `gets' function is dangerous and should not be used.
# 状态 耗时 内存占用
#1 Accepted 0ms 204.0 KiB
#2 Accepted 1ms 188.0 KiB
#3 Accepted 1ms 192.0 KiB
#4 Wrong Answer 1ms 200.0 KiB
#5 Wrong Answer 1ms 188.0 KiB
#6 Wrong Answer 1ms 188.0 KiB
#7 Accepted 1ms 204.0 KiB
#8 Wrong Answer 1ms 188.0 KiB
#9 Accepted 0ms 188.0 KiB
#10 Accepted 1ms 208.0 KiB

代码

#include <stdio.h>
#include <ctype.h>
#define N 5
#define KEY 4

int
main(void)
{
    char str[N+1];
    gets(str);
    for (int i=0; i < N; i++)
    {
        if (!isupper(str[i]))
            str[i] = (str[i] + KEY - 'a' ) % 26 + 'a';
        else if (isupper(str[i]))
            str[i] = (str[i] + KEY - 'a') % 26 + 'A';
    }
    puts(str);
    return 0;
}

信息

递交者
类型
递交
题目
3.6密码问题
题目数据
下载
语言
C
递交时间
2018-10-26 00:41:43
评测时间
2018-10-26 00:41:43
评测机
分数
60
总耗时
10ms
峰值内存
208.0 KiB