need help on a simple question.

1 回表示 (過去 30 日間)
newiuht
newiuht 2012 年 2 月 8 日
編集済み: Matt J 2013 年 10 月 4 日
I've only entered as for the input. however, in the output, it shows "The char is s" and "The char is as". Can I know how do i get rid of the "The char is s" statement? Thank you.
Script:
%Prompt the user to enter a character followed by number
char = input ('Enter the character:','s');
num = input('Enter the number:');
%Print all variables in sentence format
fprintf ('The char is %4s\n','s',char)
fprintf ('The num is %5.2f\n', num)
command window:
>> prac2
Enter the character:as
Enter the number:23
The char is s
The char is as
The num is 23.00
  1 件のコメント
Jan
Jan 2012 年 2 月 8 日
CHAR is an important Matlab command, so do not shadow it by using it as a name of a variable.

サインインしてコメントする。

採用された回答

Chandra Kurniawan
Chandra Kurniawan 2012 年 2 月 8 日
Hi,
please replace
fprintf ('The char is %4s\n','s',char)
with
fprintf ('The char is %s\n',char);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeVariables についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by