Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Only Solve Part 3!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Part 1: Please write the function declaration ( only the declaration, no definition ) and 1-2 lines of code after that

Only Solve Part 3!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Part 1: Please write the function declaration (only the declaration, no definition) and 1-2 lines of code after that giving an example of client code calling that function. Please pay special attention to the parameters and their types, whether they are passed by value or by reference, and the return type. If the value of the parameter is numeric and the number does not have to be a whole number, double should be given preference over int. e.g: double add (double a, double b); double total = add(2, 3); 1) A function named minVal which takes two numbers and returns the min of the two. 2) A function named inRangeLoHi which takes three parameters lo, hi, and val and returns whether or not val is in the range [lo, hi] 3) A function named isVowel which takes a letter and returns whether or not that letter is a vowel. 4) A function named letterAfter which takes a letter and a number n and returns the letter in the alphabet n positions after that letter (z wraps back to a). 5) A function named displayGreeting which displays some constant greeting to the user. 6) A function named incrementAll which takes 3 numbers and increments each by one. 7) A function named getInput which takes 2 numbers as parameters and asks the user to provide values for those two numbers. Part 2: Please describe very briefly (2-3 lines) if the clients of the functions need to know their definition to be able to use them. Why or why not? Part 3: Assuming the functions in Part 1 exist, write a function (definition) called inRange which takes two numbers end1 and and end2 and a number val and returns whether val is in the range defined by [smallerEnd, higherEnd] depending on whether end1 or end2 is smaller. Your function must rely on existing functions above to do its work and it should do as little work of its own as possible.

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_2

Step: 3

blur-text-image_3

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

The Database Experts Guide To SQL

Authors: Frank Lusardi

1st Edition

0070390029, 978-0070390027

More Books

Students also viewed these Databases questions