Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 3.14.249.124
Web Server : Apache
System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.2.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0705) :  /home/tasantos/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : //home/tasantos/ex9.cpp
// function template
#include <iostream>
using namespace std;

// prototypes 
void menu();
template<class T> void process();

int main()
{
	List myList;
	char ch;

	menu();
	cin >> ch;

	while(tolower(ch) != 'q')
	{
		switch (tolower(ch))
		{	case 'i':	
				cout << "\n\n\n\tNow play with the integer list - ";
				process<int>();
				break;
			case 'c':
				cout << "\n\n\n\tNow play with the char list ";
				process<char>();	
				break;
			case 'x':
                                cout << "\n\n\n\tNow play with the string list - ";
        			process<string>();
                                break;
			default:
				cout << "\n\tInvalid, redo it\n\n";
		}
		menu();
		cin >> ch;
	}

	cout << "\n\nBye.\n\n";
	return 0;
}

//---------------------------------
template<class T>
void process()
{
	cout << "\n\n\nProcess here...."\n\n\n";
	List z:
        menuForList()
	cint >> selection
	while(tolower'i'(selection) !='q'_// function template
#include <iostream>
using namespace std;

// prototypes
template <class T>
T GetMax (T a, T b); 
void menu();
template<class T>
void process();

int main()
{
	char selection;
	cout << "\n\n\nProcess here...\n\n\n";
	List z;
	T item;
	
	menuForList();
	cin >> selection;
	while(tolower(ch) != 'q')
	{
		switch (tolower(selection)
		{	case 'i':	
				cout << "\tInput two integers: ";
				process<int>();
				break;
			case 'c':
				cout << "\tInput two chars: ";
				process<char>();	
				break;
			case 'x':
                                cout << "\tInput the one full name: ";
				cin.ignore();	// '\n'
				//string a, b, c;
				getline(cin, a);
				cout << "\tInput the second full name: ";
                                getline(cin, b);
                                c = GetMax<string> (a, b);
        			cout << "\n\n\tThe bigger one is: " << c << "\n\n";
                                break;
			default:
				cout << "\n\tInvalid, redo it\n\n";
		}
		menu();
		cin >> ch;
	}

	cout << "\n\nBye.\n\n";
	return 0;
}

//---------------------------------
template<class T>
void process()
{
	char selection;
	//cout << "\n\n\nProcess here...\n\n\n";
	List<T> z;
        T item;
}

//---------------------------------
template <class T>
T GetMax (T a, T b)
{
  	T result = b;
	if(a > b)
		result = a;  
  	return (result);
}

//---------------------------------
void menu()
{
	cout << "\n\n\t--- Welcome to the Bigger Game! ---\n";
	cout << "\t    =========================\n\n";
	cout << "\tI	Integers\n";
	cout << "\tC	Characters\n";
	cout << "\tX	General strings\n";
	cout << "\tQ	Quit\n";
	cout << "\t--------------------\n";
	cout << "\n\tYour choice: ";
} 
        cout << "\n\n\tThe bigger one is: " << c << "\n\n";
}

//---------------------------------
template <class T>
T GetMax (T a, T b)
{
  	T result = b;
	if(a > b)
		result = a;  
  	return (result);
}

//---------------------------------
void menuForList()
{
	cout << "\n\t


//---------------------------------
void menu()
{
	cout << "\n\n\t--- Welcome to the Bigger Game! ---\n";
	cout << "\t    =========================\n\n";
	cout << "\tI	Integers\n";
	cout << "\tC	Characters\n";
	cout << "\tX	General strings\n";
	cout << "\tQ	Quit\n";
	cout << "\t--------------------\n";
	cout << "\n\tYour choice: ";
} 

Stv3n404 - 2023