Define a generic function called CheckOrder() that checks if four items are in ascending, neither, or descending order. The function should return -1 if the items are in ascending order, 0 if the items are unordered, and 1 if the items are in descending order. The program reads four items from input and outputs if the items are ordered. The items can be different types, including integers, strings, characters, or doubles. Example input bat hat mat sat 63.2 96.5 100.1 123.5 Ex output Order: -1 Order: -1   main.cpp #include #include using namespace std; // TODO: Define a generic method called CheckOrder() that // takes in four variables of generic type as arguments. // The return type of the method is integer // Check the order of the input: return -1 for ascending, // 0 for neither, 1 for descending int main(int argc, char* argv[]) { // Read in four strings string stringArg1, stringArg2, stringArg3, stringArg4; cin >> stringArg1; cin >> stringArg2; cin >> stringArg3; cin >> stringArg4; // Check order of four strings cout << "Order: " << CheckOrder(stringArg1, stringArg2, stringArg3, stringArg4) << endl; // Read in four doubles double doubleArg1, doubleArg2, doubleArg3, doubleArg4; cin >> doubleArg1; cin >> doubleArg2; cin >> doubleArg3; cin >> doubleArg4; // Check order of four doubles cout << "Order: " << CheckOrder(doubleArg1, doubleArg2, doubleArg3, doubleArg4) << endl; return 0; }   thank you

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

This is in C++.

Define a generic function called CheckOrder() that checks if four items are in ascending, neither, or descending order. The function should return -1 if the items are in ascending order, 0 if the items are unordered, and 1 if the items are in descending order.

The program reads four items from input and outputs if the items are ordered. The items can be different types, including integers, strings, characters, or doubles.

Example input

bat hat mat sat

63.2 96.5 100.1 123.5

Ex output

Order: -1

Order: -1

 

main.cpp

#include <string>
#include <iostream>

using namespace std;

// TODO: Define a generic method called CheckOrder() that
// takes in four variables of generic type as arguments.
// The return type of the method is integer

// Check the order of the input: return -1 for ascending,
// 0 for neither, 1 for descending


int main(int argc, char* argv[]) {
// Read in four strings
string stringArg1, stringArg2, stringArg3, stringArg4;
cin >> stringArg1;
cin >> stringArg2;
cin >> stringArg3;
cin >> stringArg4;
// Check order of four strings
cout << "Order: " << CheckOrder(stringArg1, stringArg2, stringArg3, stringArg4) << endl;

// Read in four doubles
double doubleArg1, doubleArg2, doubleArg3, doubleArg4;
cin >> doubleArg1;
cin >> doubleArg2;
cin >> doubleArg3;
cin >> doubleArg4;
// Check order of four doubles
cout << "Order: " << CheckOrder(doubleArg1, doubleArg2, doubleArg3, doubleArg4) << endl;

return 0;
}

 

thank you

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Linked List Representation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education