Question: I am looking for assistance with the attached assignment. COP 1334C Homework 6 25 points Submission instructions: The following functions can be written and tested

I am looking for assistance with the attached assignment. COP 1334C Homework 6 25 points Submission instructions: The following functions can be written and tested in one program. Save as homework6.cpp in your homework/homework6 folder. Note: To receive full credit, each function should be tested with at least two function calls. Unless the directions specify, do not include input or output in your functions! 1. (6 points) Write and test the following function that prints the date as follows: 6/28/2011 void PrintDate(int, int, int); 2. (6 points) Write and test the following function that returns the perimeter of a triangle of sides s1,s2 and s3. float TrianglePerimeter(float,float,float); 3. (6 points) Write and test the following function that converts a temperature from degrees Celsius to degrees Fahrenheit. (F = 9/5C + 32) float Fahrenheit(float); 4. (7 points) Write and test the following function that returns the value of the arithmetic sum up to n. Eg. SumUpto(5) = 5 + 4 + 3 + 2 + 1 = 15 int SumUpto(int); Extra Credit (3 points) Write and test the following function that determines whether a given number is a perfect square. bool IsSquare(int); I am looking for assistance with the attached COP 1334C Homework 6 25 points Submission instructions: The following functions can be written and tested in one program. as homework6.cpp in your homework/homework6 folder. Save Note: To receive full credit, each function should be tested with at least two function calls. Unless the directions specify, do not include input or output in your functions! 1. (6 points) Write and test the following function that prints the date as follows: 6/28/2011 void PrintDate(int, int, int); 2. (6 points) Write and test the following function that returns the perimeter of a triangle of sides s1,s2 and s3. float TrianglePerimeter(float,float,float); 3. (6 points) Write and test the following function that converts a temperature from degrees Celsius to degrees Fahrenheit. (F = 9/5C + 32) float Fahrenheit(float); 4. (7 points) Write and test the following function that returns the value of the arithmetic sum up to n. Eg. SumUpto(5) = 5 + 4 + 3 + 2 + 1 = 15 int SumUpto(int); Extra Credit (3 points) Write and test the following function that determines whether a given number is a perfect square. bool IsSquare(int)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Mathematics Questions!