Create your own function in c that accepts one input


Assignment 1- Create your own Function

Create your own function in C that accepts one input parameter and returns a float number. You decide the theme.

You should provide both your C code and an example call to the C code function. Be sure to provide an overview of what your function is doing.

Provide a screen capture showing the results of testing your code in an online compiler.

Be sure to test your code with several test cases and show your test case table.

Assignment 2-Hands-On Lab

Overview

This hands-on lab allows you to follow and experiment with the critical steps of developing a program including the program description, analysis, test plan, design, and implementation with C code. The example provided uses sequential, repetition, selection statements and two user-defined function.

Program Description

This program will provide options for a user to calculate the square or cube of a positive Integer input by a user. The program will prompt the user to enter an Integer and then prompt the user if they want to calculate the square of the cube of the number. Based on the inputs of the user, the program will output the square of the cube of the positive integer. The program will then print the Integer and square or cube of the integer based on the user's original choice. The program will continue to prompt the user for Integers and their calculation choice until the user enters a negative integer. The square and cube calculations should be calculated using a function.

Analysis

I will use sequential, selection, and repetition programming statements and functions for the cube and square calculations.

I will define three Integer numbers: IntValue, MenuSelect, Results to store the Integer value input by the user, the Menu selection (1 for Square, 2 for Cube) of the user, and the results of the Square or Cube functions.

The Square function will take one Integer as input and return one Integer as the output. The calculation within the Square function is: Results = IntValue * IntValue

For example, if 10 was entered as the IntValue. Results = 10*10 = 100

The Cube function will take one Integer as input and return one Integer as the output. The calculation within the Cube function is: Results = IntValue * IntValue*IntValue

For example, if 10 was entered as the IntValue. Results = 10*10*10 = 1000

A repetition loop can be used to loop through iterations until a negative is entered: while(intValue > 0) (

End For

Test Plan

To verify this program is working properly the input values could be used for testing:

Learning Exercises for you to complete

1. Using the Square and Cube functions as models, Create an application that includes a function named "Shrink" that would take an Integer and return the Integer divided by 2? (Hint: your returned value should probably be a double type.) Support your experimentation with screen captures of executing the new code.

2. Prepare a new test table with at least 3 distinct test cases listing input and expected output for the code you created after step 1.

3. What would happen if you removed the following code from our design? If intValue > 0

Support your argument with screen captures of executing the new code.

4. Modify the original code and add an additional function of your choice. The function should be unique and something you created for this assignment. Support your experimentation with screen captures of executing the new code. Prepare a test table with at least 3 distinct test cases listing input and expected output for your unique function.

Attachment:- Hands-On_Lab.pdf

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: Create your own function in c that accepts one input
Reference No:- TGS01626567

Now Priced at $50 (50% Discount)

Recommended (95%)

Rated (4.7/5)