Help me with is problem!!!

2 ビュー (過去 30 日間)
Rodrigo Franco
Rodrigo Franco 2014 年 9 月 27 日
回答済み: Image Analyst 2014 年 9 月 27 日
Write a program, password.m, that asks for a user’s first name, middle initial, last name, and 10-digit cell phone number. Create a six-character password for the user, using the first letter of the first name, the middle initial, the first two letters of the last name and the last two digits of the telephone number. Report the password to the user. All letters in the password should be lowercase.

採用された回答

Image Analyst
Image Analyst 2014 年 9 月 27 日
Try this: http://www.mathworks.com/matlabcentral/answers/8626-how-do-i-get-help-on-homework-questions-on-matlab-answers and look up help on inputdlg(), sprintf(), and helpdlg(). Another hint
firstTwoChars = yourString(1:2);
lastTwoChars = yourString(end-1:end);

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by