Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 106 / 1624
C++, using Visual Studio Banks offer various types of accounts, such as savings,
C++, using Visual Studio Banks offer various types of accounts, such as savings, checking, certificate of deposits, and money market, to attract customers as well as meet their sp…
C++, using Visual Studio Banks offer various types of accounts, such as savings,
C++, using Visual Studio Banks offer various types of accounts, such as savings, checking, certificate of deposits, and money market, to attract customers as well as meet their sp…
C++, using Visual Studio Redo program using dynamic arrays. You must ask the use
C++, using Visual Studio Redo program using dynamic arrays. You must ask the user for the number of candidates and then create the appropriate arrays to hold the data. //header// …
C++, what is the output of the following code. //suppose that the input is: 31,
C++, what is the output of the following code. //suppose that the input is: 31, 47, 86, 39, 62, 71, 15, 63 stackType<int> stack(50); int num; while (cin){ if (!stack.isFullS…
C++, your help will be great.Thanks in advance! exercise 1 What are the effects,
C++, your help will be great.Thanks in advance! exercise 1 What are the effects, if any, of each of the following C++ statements? a. trail->link = NULL; delete last; b. temp-&g…
C++,Devcpp NOTE: Please provide the comment for each section//, I am a beginner,
C++,Devcpp NOTE: Please provide the comment for each section//, I am a beginner, I need to understand, how the program is working. Thanks. Diamond pattern, but it adds a bit more …
C++- Homework 9 (Drink Machine Simulator) Write a program that simulates a soft
C++- Homework 9 (Drink Machine Simulator) Write a program that simulates a soft drink machine The program should use a structure that stores the following data » Drink nam Drink C…
C++- LAB #3 - Diving Competition Scoring a Diving Competition The names of diver
C++- LAB #3 - Diving Competition Scoring a Diving Competition The names of divers and their scores for a dive are stored in a file called DIV1.txt. Each divers name is stored on 3…
C++- Need to take this code and implement a red-black Tree using the existing co
C++- Need to take this code and implement a red-black Tree using the existing code and include an output function to demonstrate that the red-black tree rules are being maintained…
C++- Need to take this code and implement an AVL Tree using the existing code an
C++- Need to take this code and implement an AVL Tree using the existing code and Also include a LevelOrder output function so that you can demonstrate that the AVL property is be…
C++- Need to take this code and implement an AVL Tree using the existing code an
C++- Need to take this code and implement an AVL Tree using the existing code and Also include a LevelOrder output function so that you can demonstrate that the AVL property is be…
C++- Please solve TODO sections and match sample output. Demonstrate event-contr
C++- Please solve TODO sections and match sample output. Demonstrate event-controlled loop using boolean flag to present a menu. Use nested decision structure to process each choi…
C++- Please solve TODO sections and match sample output. TODO: (1) Demonstrate u
C++- Please solve TODO sections and match sample output. TODO: (1) Demonstrate using a Do-While loop in place of a While loop. (2) Use a Switch statement in place of If-Else-If-El…
C++- Please solve TODO sections and match sample output. Use a while to search d
C++- Please solve TODO sections and match sample output. Use a while to search data, looking for the largest entry Demonstrate how to use an event-controlled loop to read input an…
C++- Please solve TODO sections and match sample output. Use nested while loops
C++- Please solve TODO sections and match sample output. Use nested while loops to produce rows and columns Demonstrate how to use nested While loops to print a multiplication tab…
C++- Why is it telling me in this code, that the variable grid (which is declare
C++- Why is it telling me in this code, that the variable grid (which is declared in class board) is undefined when I refer to it in a function that is in class creature(creature …
C++. A print queue algorithm assigns printing tasks to 4 printers based on the n
C++. A print queue algorithm assigns printing tasks to 4 printers based on the number of pages to be printed. Printing jobs range from 1-10 pages and come in every 5 seconds. Each…
C++. Add a function to the Linked List Program from class that returns the maxim
C++. Add a function to the Linked List Program from class that returns the maximum value in the list. below are the programs typedef int ListItemType; struct node { ListItemType i…
C++. Create and implement the functions listed below. Precondition and postcondi
C++. Create and implement the functions listed below. Precondition and postconditions are provided. string add_binaries_signed(string b1, string b2); // precondition: b1 and b2 ar…
C++. Customer Data. This program will have two classes. The first class defines
C++. Customer Data. This program will have two classes. The first class defines a person, which means this class can be used for anything that involves a person. We will use it to…
C++. Design a class named Month. The class should have the following private mem
C++. Design a class named Month. The class should have the following private members: • Name: A string object that holds the name of a month, such as January, February, etc. • mon…
C++. Do not user pointers or global variables. Write a class called Person that
C++. Do not user pointers or global variables. Write a class called Person that has two data members - a string variable called name and a double variable called age. It should ha…
C++. Given a set of two or more points in the Cartesian plane, a closest pair of
C++. Given a set of two or more points in the Cartesian plane, a closest pair of points (P,Q) is a pair of points such that the distance between them is minimal. It is possible fo…
C++. Given the following class declaration: struct Student { char * name; float
C++. Given the following class declaration: struct Student { char * name; float gpa; }; class StudentList { public: bool remove(const char name[], Student& a…
C++. Given the following class declaration: struct Student { char * name; float
C++. Given the following class declaration: struct Student { char * name; float gpa; }; class StudentList { public: bool remove(const char name[], Student& a…
C++. Given the following class declaration: struct Student { char * name; float
C++. Given the following class declaration: struct Student { char * name; float gpa; }; class StudentList { public: bool remove(const char name[], Student& a…
C++. Given the following struct declaration: struct Student { * name; gpa; }; Im
C++. Given the following struct declaration: struct Student { * name; gpa; }; Implement 2 functions: 1. Student ** createStudentList(char ** names, int size); - fu…
C++. Given the following struct declaration: struct Student { char * name; float
C++. Given the following struct declaration: struct Student { char * name; float gpa; }; Implement 2 functions: 1. Student * createStudent(const char name[ ], float…
C++. Gradebook, For your test you should test more than one class gradebook. For
C++. Gradebook, For your test you should test more than one class gradebook. For example make gradebook for all your courses you currently have. CPP file: #include <array> #…
C++. I am using Geany Only allow include
C++. I am using Geany Only allow include <iostream> <fstream> <cstring> <vector> Write a program that reads from a file (ask user to type in the file name)…
C++. I need to overload the ==operator in my shoppingcart program so when a user
C++. I need to overload the ==operator in my shoppingcart program so when a user adds an item it checks the list of items already added (in an array) to see if it is in there so d…
C++. If someone could walk me through this it would be much appreciated. Thank y
C++. If someone could walk me through this it would be much appreciated. Thank you in advance! Program darray.cpp is as follows: // This program demonstrates the use of dynamic ar…
C++. Need some help getting started. We will also have the following two functio
C++. Need some help getting started. We will also have the following two functions: 1. A mutate function that randomly modifies a chromosome. 2. A crossover function that takes tw…
C++. Please leave comments explaining. Thank you! Given two unsorted STL lists X
C++. Please leave comments explaining. Thank you! Given two unsorted STL lists X and P , write a valid C++ function intersection( X , P ) that returns a new list that contains the…
C++. Program 7 - Postal Packages Lone Star Package Service ships packages within
C++. Program 7 - Postal Packages Lone Star Package Service ships packages within the state of Texas. Packages are accepted for shipping subject to the following restrictions: Ship…
C++. Test if a Tree is Balanced Use the given Tree class and implement a functio
C++. Test if a Tree is Balanced Use the given Tree class and implement a function to test if the binary tree is balanced or not. An empty tree is height-balanced. A non-empty bina…
C++. Test if a Tree is Balanced Use the given Tree class and implement a functio
C++. Test if a Tree is Balanced Use the given Tree class and implement a function to test if the binary tree is balanced or not. An empty tree is height-balanced. A non-empty bina…
C++. The files must be named: Board.hpp, Board.cpp, TicTacToe.hpp and TicTacToe.
C++. The files must be named: Board.hpp, Board.cpp, TicTacToe.hpp and TicTacToe.cpp Write a class called Board that represents a tic-tac-toe board. It should have a 3x3 array as a…
C++. This program must have 4 files named : Board.hpp , Board.cpp , TicTacToe.hp
C++. This program must have 4 files named : Board.hpp, Board.cpp, TicTacToe.hpp and TicTacToe.cpp Write a class called Board that represents a tic-tac-toe board. It should have a …
C++. Write a function named dateCalculator() that has an integer parameter repre
C++. Write a function named dateCalculator() that has an integer parameter representing the total number of days since the turn of the last century (1/1/1900) and three reference …
C++. Write a program that copies the contents of one array into another array bu
C++. Write a program that copies the contents of one array into another array but in reverse order using pointers. - in main() - define 2 arrays of ty…
C++. Write a program that declares three one dimensional arrays named miles, gal
C++. Write a program that declares three one dimensional arrays named miles, gallons, and mpg. Each array should be declared in main() and should be capable of holding ten double-…
C++. Write a program that inputs two numbers and determines which of the two num
C++. Write a program that inputs two numbers and determines which of the two numbers is the smallest. If the numbers are equal, display a message that they are equal. Using the ps…
C++. Write a program that uses for loops to perform the following steps: a. Prom
C++. Write a program that uses for loops to perform the following steps: a. Prompt the user to input two positive integers. variables: firstNum and secondNum (firstNum must be les…
C++. Write a program that uses while loops to perform the following steps: a. Pr
C++. Write a program that uses while loops to perform the following steps: a. Prompt the user to input two positive integers. Variables: firstNum and secondNum (firstNum must be l…
C++. Write a program that will input a phrase and convert it to pig latin. Put e
C++. Write a program that will input a phrase and convert it to pig latin. Put each word in a separate element of a string array. Remove the first letter from each word and concat…
C++. Write a program with two functions sharing the same name computeAverage: a.
C++. Write a program with two functions sharing the same name computeAverage: a. one function has two integers as arguments and returns the average of the numbers (return type is …
C++. i need answer asap Here we have naldinol ile dau tiyorsar Erom Display 6.3
C++. i need answer asap Here we have naldinol ile dau tiyorsar Erom Display 6.3 sothm i' mw hm one addizinnal mewher function called spt Wrise an oppeoprinte deiition for the memb…
C++... Prepare a class TreeNode • Prepare a class named BinarySearchTree with
C++... Prepare a class TreeNode<T> • Prepare a class named BinarySearchTree with the following methods o int treeHeight(TreeNode<T>* root) : Returns the tree height wh…
C++......Eight Queens with “Fancy Print” Chessboard Write C++ program Modify the
C++......Eight Queens with “Fancy Print” Chessboard Write C++ program Modify the Eight Queens program (1 dimensional array – no goto version) so that it prints out a chessboard wi…