Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

I need help with inputs

조회 수: 1 (최근 30일)
Allyson
Allyson 2014년 2월 20일
마감: MATLAB Answer Bot 2021년 8월 20일
input the area code of your telephone number and store the input in a variable named “AreaCode”. The variable “AreaCode” is to be of type “Char”. Use the input() function once to put 3 newlines BEFORE the prompt “Enter your Area Code --> ”. The string “Your area code is ” is to be outputted with value of the variable “AreaCode” on the same line. A newline is outputted at the end.

답변 (2개)

Walter Roberson
Walter Roberson 2014년 2월 21일
Have a look at the second syntax for input() http://www.mathworks.com/help/matlab/ref/input.html

Image Analyst
Image Analyst 2014년 2월 21일
You can use sprintf() to create a string that can be used as a prompt in input(). For example, to put 2 new lines (\n) followed by a string, you can do this:
userPrompt = sprintf('\n\nEnter some stuff:');
Adapt it to your homework and send it into input() or inputdlg(). Put a \n anywhere you want a new line in your string.

Community Treasure Hunt

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

Start Hunting!

Translated by