/ 科创班 /

记录详情

Runtime Error


  
# 状态 耗时 内存占用
#1 Runtime Error 1ms 200.0 KiB
#2 Runtime Error 1ms 192.0 KiB
#3 Runtime Error 2ms 180.0 KiB
#4 Runtime Error 1ms 204.0 KiB
#5 Runtime Error 1ms 184.0 KiB
#6 Runtime Error 2ms 192.0 KiB
#7 Runtime Error 1ms 200.0 KiB
#8 Runtime Error 1ms 192.0 KiB
#9 Runtime Error 1ms 184.0 KiB
#10 Runtime Error 1ms 204.0 KiB

代码

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



void
get(char *s)
{
    int c;
    char *p = s;
    while((c=getchar()) !='\n')
    {
        *p = c;
        p++;
    }
    *p = '\0';
}

int
main(void)
{
    char str[N+1];
    get(str);
    for (int i=0; i < N; i++)
    {   
        if (islower(str[i]))
            str[i] = (str[i] + KEY - 'a' ) % 26 + 'a';
        else if (isupper(str[i]))
            str[i] = (str[i] + KEY - 'A' ) % 26 + 'A';
    }
    for (char *p=str; *p != '\0'; p++)
        printf("%c", *p);
    return 0;
}

信息

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