Write a template function that returns the largest value

Assignment Help C/C++ Programming
Reference no: EM132078936

You need Help with a Problem. Please its due today and you cant figure it out.

Problem .

A.) Write a program that asks the user to enter 10 integer numbers. These 10 input numbers could be duplicated. The program will count and display the unique non-zero numbers. You are required to use the containers and iterators defined in the standard template libraries.

B.) Write a template function that returns the largest value of three parameters. The function should operate with any numeric data types (e.g., float, int, double, and char).

#include <iostream>

#include <string>

using namespace std;

/*

Your code goes here

*/

int main()

{

int m1 = 3003;

int m2 = 2002;

int m3 = 1001;

 

cout << "The largest integer value is " << Largest(m1, m2, m3);

cout << endl;

char grade_1 = 'A';

char grade_2 = 'D';

char grade_3 = 'B';

cout << "The lowest grade is " << Largest(grade_1, grade_2, grade_3);

cout << endl;

 

double s1 = 88.8;

double s2 = 90.1;

double s3 = 92.5;

 

cout << "The higest score is " << Largest(s1, s2, s3);

cout << endl;

return 0;

}

/*

The display should be:

The largest integer value is 3003

The lowest grade is D

The higest score is 92.5

*/

C.) Write a recursive function that takes one parameter n (n>0) of type int and returns

the nth Fibonacci number. Example of Fibonacci numbers: F(1) is 1, F(2), is 2, F(3) is 3, F(4) is

5, and in general

#include <iostream>

using namespace std;

int Fibonacci(int);

int main()

{

int input;

cout << "Please enter a positive integer number:";

cin >> input;

cout << "Fibonacci(" << input << ")=" << Fibonacci(input) << endl;

return 0;

}

int Fibonacci(int n)

{

//Your code goes here

//This must be a recursive function

}

Reference no: EM132078936

Questions Cloud

What is the combined number of units of the two products : The company's total fixed costs are expected to be $280,000. Based on this information, what is the combined number of units of the two products
Compute the sum off all integers from 1 to n with a program : Write code for a function that uses a loop to compute the sum off all integers from 1 to n.
What causes a lung to collapse : What causes a lung to collapse? and is a collapsed lung functional?
Function in the circulatory system : How do the sickled red blood cells vary from the normal red blood cells? How might this affect their ability to function in the circulatory system?
Write a template function that returns the largest value : Write a template function that returns the largest value of three parameters. The function should operate with any numeric data types.
Prevalent cell type in blood : What is the most prevalent cell type in blood, and what is the least prevalent cell type in blood?
Determining the glycerol molecule : In a phospholipid, what are the three (monomeric) parts that are attached to the glycerol molecule?
Build a simulator that reads a memory trace and simulates : Your job is to build a simulator that reads a memory trace and simulates the action of a virtual memory system with a single level page table.
Make the journal entries to record the issuance of bonds : Dailey Company issued $655,500, 9%, 15-year bonds on December 31, 2013, for $629,280. Make the journal entries to record the issuance of bonds

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Creating an array of names

Just write the codes and label my variables. Example: (with Python not C++). Creating an array of names

  Code to implement a staque

Write a C++ code to implement a Staque. Since the data structure is all about inserting and deleting numbers, it would be a good option to use a linked list to implement Staque.

  Write a class named employee with the class declaration

Write a class named Employee, with the class declaration in a file called Employee.h and the implementation in a file called Employee.cpp.

  Taskwrite a bouncing ball video game the balls bounces

taskwrite a bouncing ball video game. the balls bounces within the screen where the two horizontal walls are fixed. the

  Show the deatils of an emplyoee - c programming

Show the deatils of an emplyoee in a neat format.

  Recursive function could result in an infinite loop

Briefly explain how the following recursive function could result in an infinite loop and what you could do to correct this:

  Write a float function that prompts the user for radius

Create an enumerated type with three values: POSITIVE, NEGATIVE, and ZERO. Write a function that prompts the user for an integer, reads the integer, and returns one of the enumerated values based on that number (e.g., returns NEGATIVE if the input..

  Prepare a program for a bank that allows the user

Prepare a program for a bank that allows the user to enter an amount of money in cents. Show the number of whole dollars the bank will give the customer in exchange.

  Computes the product of all elements in a vector

Write a C function that computes the product of all elements in a vector x of dimension n. The elements of the vector are stored in a double array of size n.

  Powers of a user specified range of integer numbers

Write a C program to print a table of the powers of a user specified range of integer numbers. The program should also print the sum of the powers of the numbers.

  Wap that takes initial size of a green crud population

In other words, each number is the sum of the previous two numbers. The first few Fibonacci numbers are 1, 1, 2, 3, 5, and 8. One place where these numbers.

  An essential component of compromised to a resource

1. true or false? an essential component of compromised to a resource is that the situation resulting in the compromise was motivated by malice. A.true B.false

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd