Menu

[Solved]Issues Problem Started Though Second Picture Thought Correct See Anyone Could Help Solve Q37256761

I am having issues with this problem, I have started it though.The second picture is what I thought was to be correct. As you cansee it is not. If anyone could help me solve this problem it wouldbe greatly appreciated.

Problem Summary Write a function to calculate the volume and surface area of a right circular cone Your function must calcula

Best Solution Solution 1: 0 of 2 tests passed Submitted about 17 hours ago | ID: 12998106 | Size: 41 1 function [Volume, Area

Problem Summary Write a function to calculate the volume and surface area of a right circular cone Your function must calculate and return the area and volume corresponding to the input Radius and Height. Do not use Radius, Volume, Area, or Height as variables in your function. Be sure to use the function header (as shown below) and document your code using comments. Be sure to include your name in the function header. 2 Surface area π r /r2 h Volume-_ar’h 3 function %UNTITLED2 Summary of this function goes here % Detailed explanation goes here % more details go here % Your Name goes here outputArg1,outputArg2]-untitled2(inputArg1,inputArg2) outputArg1 inputArg1; outputArg2 = inputAg2; end Best Solution Solution 1: 0 of 2 tests passed Submitted about 17 hours ago | ID: 12998106 | Size: 41 1 function [Volume, Area]-ConeVolume (Radius, Height) 2Volume(1/3)*pi*Radius*Radius*Height; Areapi*Radius*sqrt (Radius*Radius+Height*Height); 4 end Show transcribed image text Problem Summary Write a function to calculate the volume and surface area of a right circular cone Your function must calculate and return the area and volume corresponding to the input Radius and Height. Do not use Radius, Volume, Area, or Height as variables in your function. Be sure to use the function header (as shown below) and document your code using comments. Be sure to include your name in the function header. 2 Surface area π r /r2 h Volume-_ar’h 3 function %UNTITLED2 Summary of this function goes here % Detailed explanation goes here % more details go here % Your Name goes here outputArg1,outputArg2]-untitled2(inputArg1,inputArg2) outputArg1 inputArg1; outputArg2 = inputAg2; end
Best Solution Solution 1: 0 of 2 tests passed Submitted about 17 hours ago | ID: 12998106 | Size: 41 1 function [Volume, Area]-ConeVolume (Radius, Height) 2Volume(1/3)*pi*Radius*Radius*Height; Areapi*Radius*sqrt (Radius*Radius+Height*Height); 4 end

Expert Answer


Answer to I am having issues with this problem, I have started it though. The second picture is what I thought was to be correct. … . . .

OR


Leave a Reply

Your email address will not be published. Required fields are marked *