Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Exercise 5 In one program, write 3 separate functions, and use them. 1) Write the function body for each: int squareInteger s( int x)

C++

Exercise 5 In one program, write 3 separate functions, and use them. 1) Write the function body for each: int squareInteger s( int x) double squareDouble( double d) float squareFloat ( float f) They basically do the same thing, square a number, but use different argument datatypes. 2) Test Each function with: Using int 4, double 4.9, float 9.4 What happened when you use the 1 correct data type as input ? What happened when you use the 2 incorrect data types as inputs ? What is the lesson this teaches you about functions ? Use filename: Week14YourNameProg5Fun

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