/ 科创班 /

记录详情

Accepted

/in/foo.c: In function 'main':
/in/foo.c:5:9: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'char (*)[50]' [-Wformat=]
 scanf("%s",&s);
         ^
# 状态 耗时 内存占用
#1 Accepted 11ms 256.0 KiB

代码

#include<stdio.h>
#define max 50
int main(){
char s[max],d[max];
scanf("%s",&s);
int i = 0;
while(s[i]!='\0'){
int r = ((s[i] + 5) - 'a')%26;
d[i] = 'a' + r - 1;
i++;
}
d[i] = '\0';
printf("%s",d);
return 0;
}

信息

递交者
类型
递交
题目
破译密码
题目数据
下载
语言
C
递交时间
2018-05-14 22:08:23
评测时间
2018-05-14 22:08:23
评测机
分数
1000
总耗时
11ms
峰值内存
256.0 KiB