Indexing a Variable in an Input Prompt

조회 수: 4 (최근 30일)
Sarah Rasavanh
Sarah Rasavanh 2019년 11월 21일
댓글: F.M 2019년 11월 24일
I am trying to create and input statement that refrences a changing variable in my code.
Playerturn = 1
prompt = ('Player %i move x: ', Playerturn);
y1 = input(prompt, 's');
I'm able to print the input statement but it prints it as
Player %i move x:
instead of
Player 1 move x:
I have a while loop that changes the value of Playerturn back and forth between 1 and 2, how do I reference the variable in one input statement so that it can work for both players?

답변 (2개)

Fangjun Jiang
Fangjun Jiang 2019년 11월 21일
prompt = sprintf('Player %i move x: ', Playerturn)
  댓글 수: 1
F.M
F.M 2019년 11월 24일
Dear Mr. Fangjun Jiang
How can I contact you?

댓글을 달려면 로그인하십시오.


Steven Lord
Steven Lord 2019년 11월 21일
If you're using a release that supports string you can use the + operator for string.
Playerturn = 2;
moveNumber = 1;
y1 = input("Player " + Playerturn + " move " + moveNumber + ": ", 's')

카테고리

Help CenterFile Exchange에서 Board games에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by