Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92296 | 余泽越 | 06字符后移 | Python3 | Wrong Answer | 37 MS | 3768 KB | 368 | 2024-09-28 20:07:07 |
a = input() b = input() c = input() d = input() if a == "z": print("a",end=" ") else: print(chr(ord(a)+1),end=" ") if b == "z": print("a",end=" ") else: print(chr(ord(b)+1),end=" ") if c == "z": print("a",end=" ") else: print(chr(ord(c)+1),end=" ") if d == "z": print("a",end=" ") else: print(chr(ord(d)+1),end=" ")
------Input------
c e p p
------Answer-----
d f q q
------Your output-----