/ 科创班 /

记录详情

Runtime Error

/in/foo.c:3:6: warning: return type of 'main' is not 'int' [-Wmain]
 void main(){
      ^~~~
/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 Runtime Error 2ms 256.0 KiB
#2 Runtime Error 3ms 256.0 KiB
#3 Runtime Error 2ms 256.0 KiB
#4 Runtime Error 2ms 256.0 KiB
#5 Runtime Error 2ms 256.0 KiB
#6 Runtime Error 2ms 256.0 KiB
#7 Runtime Error 2ms 256.0 KiB
#8 Runtime Error 2ms 256.0 KiB
#9 Runtime Error 2ms 256.0 KiB
#10 Runtime Error 2ms 256.0 KiB

代码

#include<stdio.h>
#define max 50
void 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);
}

信息

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