Problem 560. Set defaults

Write a function that computes the volume of a cube. The function should be able to accept three inputs: the length, width, and height of a cube. If any of the three inputs are left empty or not given, they should default to value 1.

For example,

computeVolume(2,3,4) 

returns 24, while

computeVolume(2,3)

returns 6, and

computeVolume(1,[],3)

returns 3

Solution Stats

37.59% Correct | 62.41% Incorrect
Last Solution submitted on Jul 06, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers93

Suggested Problems

More from this Author1

Problem Tags

Community Treasure Hunt

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

Start Hunting!