下面为一段数字,将把它翻译过来
25 15 21 8 1 22 5 20 15 2 5 12 9 5 22 5 9 14 25 15 21 18 19 5 12 6 20 8 1 20 9 19 20 8 5 19 5 3 18 5 20 15 6 19 21 3 3 5 19 19
请用function函数编写
Matlab:假设1-26分别代表a-z二十六个字母
答案:2 悬赏:0 手机版
解决时间 2021-03-23 06:58
- 提问者网友:流星是天使的眼泪
- 2021-03-22 15:24
最佳答案
- 五星知识达人网友:洎扰庸人
- 2021-03-22 16:39
function str=dec2char(num)
s=num+96;
str=char(s);
祝你学习愉快!
s=num+96;
str=char(s);
祝你学习愉快!
全部回答
- 1楼网友:白昼之月
- 2021-03-22 17:02
S=[25 15 21 8 1 22 5 20 15 2 5 12 9 5 22 5 9 14 25 15 21 18 19 5 12 6 20 8 1 20 9 19 20 8 5 19 5 3 18 5 20 15 6 19 21 3 3 5 19 19];
S1=S+96;
>> char(S1)
ans =
youhavetobelieveinyourselfthatisthesecretofsuccess
you have to believe in yourself that is the secret of success
----------------------------------------------
function code=decode(x)
x=x+96;
code=char(x);
--------------------------------------
x=[25 15 21 8 1 22 5 20 15 2 5 12 9 5 22 5 9 14 25 15 21 18 19 5 12 6 20 8 1 20 9 19 20 8 5 19 5 3 18 5 20 15 6 19 21 3 3 5 19 19];
decode(x)
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯