Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

IN MATLAB. Problem 20. Write a function named write_two_digits that takes one scalar input argument (the function does not have to check that the input

image text in transcribed

IN MATLAB.

Problem 20. Write a function named write_two_digits that takes one scalar input argument (the function does not have to check that the input is a scalar), returns no output arguments, and prints to the Command Window the name of the value of the input. The function must check to determine whether the input is a whole number in the range, -99 to +99. If the number is out of range, the function prints an error message and returns. If the number is in range, then the function prints the integer's name (examples of names are given below) If the input falls in the range -9 to +9, then the printout must be the same as that of write_digit, which is given in this Section, and that function must be used asa subfunction in the M-file write_two_digits.m HINT: The built-in function floor can be helpful. It can be employed to determine whether a number is a whole number, and it can also be employed to determine the value of the digit in the tens place and the value of the digit in the ones place The printout of write_two_digits must be consistent with these examples >>write_two_digits(0) zero >>write two_digits(3) three >>write two_digits(-3) minus three >>write two_digits(10) ten >>write two_digits(12) twelve >>write_two digits (18) eighteen >>write two_digits (23) twenty-three >>write two_digits(-99) minus ninety-nine >>write two_digits(113) Input must be an integer from -99 to +99 >> write two_digits(24.7) Input must be an integer from -99 to +99

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

MySQL Crash Course A Hands On Introduction To Database Development

Authors: Rick Silva

1st Edition

1718503008, 978-1718503007

More Books

Students also viewed these Databases questions

Question

Find the 21st term of the AP: 19, 26, 33, 40, .. ..

Answered: 1 week ago