回 帖 发 新 帖 刷新版面

主题:值得探讨的问题

编写一个译码程序,把一个英语句子译成数字代码.译码规则是以数字1代替字母A,数字2代替字母B,……26代替字母Z,如遇空格则打印一个星号‘*’英文句子以‘结束’。

回复列表 (共1个回复)

沙发

begin
read(a);
if a:='a' then do write('1');
if a:='b' then do write('2');
if a:='c' then do write('3');
if a:='d' then do write('4');
if a:='e' then do write('5');
if a:='f' then do write('6');
if a:='g' then do write('7');
if a:='h' then do write('8');
if a:='i' then do write('9');
if a:='j' then do write('10');
if a:='a' then do write('11');
if a:=' ' then do write('*');
我也不太清楚,请大家指教!(这不是全部)

我来回复

您尚未登录,请登录后再回复。点此登录或注册