How do I print out a product of 2 requested numbers

1 回表示 (過去 30 日間)
Matthew Orsie
Matthew Orsie 2018 年 2 月 28 日
コメント済み: Stephen23 2018 年 2 月 28 日
I need to write a function that requests the user to input 2 numbers one by one and then prints them and their prodct according to:
(I'm using the example numbers it gives me)
>> print_product Give me a number: 4 Give me another number: 7 The product of 4 and 7 is 28.
function [] = print_product ()
clc
x = input('Give me a number: ', 's');
y = input('Give me another number: ', 's');
z = x*y;
fprintf ('The product of x and y is z ')

採用された回答

Stephen23
Stephen23 2018 年 2 月 28 日
編集済み: Stephen23 2018 年 2 月 28 日
function print_product()
x = str2double(input('Give me a number: ', 's'));
y = str2double(input('Give me another number: ', 's'));
z = x*y
fprintf('The product of %d and %d is %d',x,y,z)
end
  2 件のコメント
Matthew Orsie
Matthew Orsie 2018 年 2 月 28 日
What does that str2double function do? The explanations online don't really help
Stephen23
Stephen23 2018 年 2 月 28 日
input('...','s') returns a character vector (a string), and str2double converts that into a numeric (which you need for doing any numeric operations, e.g. times).

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by