How to write the code that takes input as fahrenheit and display Celsius?

6 ビュー (過去 30 日間)
Hi all,
I want to write down the code that takes an input and covert it to the desired answer. for example,
f = input('Enter temperature in Fahrenheit:')
c = (f-32)*5/9;
fprintf('The corresponding temperature in Celsius is: %2.2f','c')
Can you please tell me why this is not working?
  3 件のコメント
Ashfaq Ahmed
Ashfaq Ahmed 2022 年 1 月 1 日
Hi, I did that but it does not display the sentence I want to see. Although the converted result is there, in the workspace.
Shreyan Basu Ray
Shreyan Basu Ray 2022 年 1 月 1 日
Try to put in the value of f, instead of getting it from the user. Say,
f = 100;
c = (f-32)*5/9;
fprintf('The corresponding temperature in Celsius is: %2.2f',c)
Now you should be able to see. This is happening because, here in this particular workspace, Matlab is not having any support for user input.

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

採用された回答

Walter Roberson
Walter Roberson 2022 年 1 月 1 日
f = input('Enter temperature in Fahrenheit: ')
c = (f-32)*5/9;
fprintf('The corresponding temperature in Celsius is: %2.2f\n', c)
  4 件のコメント
Ashfaq Ahmed
Ashfaq Ahmed 2022 年 1 月 1 日
Hi, thanks.
I am expectig to see this sentence first -
'Enter temperature in Fahrenheit: '
Then, when I input the F temperature, I want to see the result with this sentence -
'The corresponding temperature in Celsius is: '
Ashfaq Ahmed
Ashfaq Ahmed 2022 年 1 月 1 日
編集済み: Ashfaq Ahmed 2022 年 1 月 1 日
I can see it now. Thank you!!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by