MATLAB を使用して、ユーザーに名前を尋ねるスクリプトを作成する必要がありますinput
。次に、 を使用してスクランブル形式で名前を返しますrandperm
。
ユーザーの名前を取得するには、次のものが必要です。
>>name = input('what is your name: ', 's');
% user types name
% At this point, the variable: name, will contain
% whatever value the user types (as a string of characters),
randperm
ユーザー名のスクランブル バージョンを返す方法がわかりません。
助けてくれてありがとう!