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

  Create program that uses functions and reference parameters

Create program that uses functions and reference parameters, and asks user for the outside temperature.

  Write a program using vectors and iterators

Write a program using vectors and iterators that allows a user to maintain a personal list of DVD titles

  Write the code required to analyse and display the data

Calculate and store the average for each row and column. Determine and store the values for the Average Map.

  Write a webservices application

Write a webservices application that does a simple four function calculator

  Iimplement a client-server of the game

Iimplement a client-server version of the rock-paper-scissors-lizard-Spock game.

  Model-view-controller

Explain Model-View-Controller paradigm

  Design a nested program

How many levels of nesting are there in this design?

  Convert celsius temperatures to fahrenheit temperatures

Write a C++ program that converts Celsius Temperatures to Fahrenheit Temperatures.

  Evaluate and output the value in the given base

Write C program that will input two values from the user that are a Value and a Base with which you will evaluate and output the Value in the given Base.

  Design a base class shape with virtual functions

Design a base class shape with virtual functions

  Implementation of classes

Implementation of classes Chart and BarChart. Class barChart chould display a simple textual representation of the data

  Technical paper: memory management

Technical Paper: Memory Management, The intent of this paper is to provide you with an in depth knowledge of how memory is used in executing, your programs and its critical support for applications.

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