Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 109 / 1624
C++: The following table shows the approximate speed of sound in air, water, and
C++: The following table shows the approximate speed of sound in air, water, and steel. ____________________________________________________________ Medium …
C++: This software stores all the data in array . Each person has SSN and name i
C++: This software stores all the data in array. Each person has SSN and name information. This information is provided in separated files. This is the data of a sample file: i 58…
C++: This software stores all the data in array . Each person has SSN and name i
C++: This software stores all the data in array. Each person has SSN and name information. This information is provided in separated files. This is the data of a sample file: i 58…
C++: True or False Questions & Multiple Choice Questions Note that I didn\'t pos
C++: True or False Questions & Multiple Choice Questions Note that I didn't post all the questions. For example, there is no question 6. Question 1: Typically in C++, most cla…
C++: True or False Questions & Multiple Choice Questions Note that I didn\'t pos
C++: True or False Questions & Multiple Choice Questions Note that I didn't post all the questions. For example, there is no question 6. Don't bother answering if you aren't g…
C++: True or False Questions & Multiple Choice Questions Note that I didn\'t pos
C++: True or False Questions & Multiple Choice Questions Note that I didn't post all the questions. For example, there is no question 6. Question 1: Typically in C++, most cla…
C++: True or False Questions & Multiple Choice Questions Note that I didn\'t pos
C++: True or False Questions & Multiple Choice Questions Note that I didn't post all the questions. For example, there is no question 6. Don't bother answering if you aren't g…
C++: Trying to get a sortAccounts() function working where it will sort all of t
C++: Trying to get a sortAccounts() function working where it will sort all of the vector structures based on the value of the accountNumber. So far, here is my structure, makeAcc…
C++: Trying to output the max and min: #include using namespace std;
C++: Trying to output the max and min: #include <iostream> using namespace std; int main(int argc, char**argv) { int A, B, C; //promote values for each input then read th…
C++: Undefined Reference / Linkage Error? I\'m using three files - main.cpp, fun
C++: Undefined Reference / Linkage Error? I'm using three files - main.cpp, function_file.cpp, header_file.h. When including the header file in each of the .cpp files, I'm getting…
C++: Update the program below by adding the new requirements in this task. Pleas
C++: Update the program below by adding the new requirements in this task. Please describe the results and add short comments to explain program. #include <iostream> #includ…
C++: Using a heap, implement the priority queue class. The class should have a s
C++: Using a heap, implement the priority queue class. The class should have a static constant member variable, CAPACITY, which is the maximum size of the heap and an array,data, …
C++: Using a heap, implement this priority queue class. The class should have a
C++: Using a heap, implement this priority queue class. The class should have a static constant member variable, CAPACITY, which is the maximum size of the heap and an array, data…
C++: Using the class Date that you have defined in exercise O7, write the defini
C++: Using the class Date that you have defined in exercise O7, write the definition of the class named Employee with the following private data members: first name - class string…
C++: Which of the following enumerated data type declarations are syntactically
C++: Which of the following enumerated data type declarations are syntactically correct? Select all that apply. Please support the answer with an explanation. Which of the followi…
C++: Write a class having two private integer variables, one constructor that wi
C++: Write a class having two private integer variables, one constructor that will initialize the variables, one member function which will handle the private integer variables, a…
C++: Write a function that accepts an 3x3 array. 1. Transpose of m x n (m rows a
C++: Write a function that accepts an 3x3 array. 1. Transpose of m x n (m rows and n columns) matrix involves interchanging rows and columns array. array-The below illustration sh…
C++: Write a function that accepts an 3x3 array. 1. Transpose of m x n (m rows a
C++: Write a function that accepts an 3x3 array. 1. Transpose of m x n (m rows and n columns) matrix involves interchanging rows and columns array. array-The below illustration sh…
C++: Write a function that takes an array Arr of size N and returns another arra
C++: Write a function that takes an array Arr of size N and returns another array which, first disregards the numbers greater than a certain threshold (also a passed parameter), a…
C++: Write a heapsort program that generates random numbers and insert them in h
C++: Write a heapsort program that generates random numbers and insert them in heap. The program then performs heapsort to sort the numbers in ascending order. Implement the heap …
C++: Write a program that reads a file consisting of students test scores in the
C++: Write a program that reads a file consisting of students test scores in the range 0-200. It should then determine the number of students having scores in each of the followin…
C++: Write a program that uses a 3 X 3 array and randomly place each integer fro
C++: Write a program that uses a 3 X 3 array and randomly place each integer from 1 to 9 into the nine squares. The program calculates the magic number by adding all the numbers i…
C++: Write a program whose inputs are three integers, and whose output is both t
C++: Write a program whose inputs are three integers, and whose output is both the largest of the three values and the smallest of the three values. If the input is 7 15 3, the ou…
C++: Write the code for a function object named CompareBits that overloads opera
C++: Write the code for a function object named CompareBits that overloads operator() such that: • The method signature is: bool operator() (const int& lhs, const int& rhs…
C++: You will create an inheritance set of classes. Use proper rules for data ty
C++: You will create an inheritance set of classes. Use proper rules for data types, class definitions, and inheritance (check input/output of data below). You will create a super…
C++: Your job is to design a program to be used for a small local diner that all
C++: Your job is to design a program to be used for a small local diner that allows customers to see the diner’s menu and then make their meal selections using the program. The pr…
C++: Zipping a file (you can only use the headers #include #include
C++: Zipping a file (you can only use the headers #include <fstream> #include <string> #include <algorithm>) Code for unzipping a file: streampos size; char * me…
C++: Zipping a file (you can only use the headers #include #include
C++: Zipping a file (you can only use the headers #include <fstream> #include <string> #include <algorithm>) My code that doesn't work: (this works for most file…
C++: binary search trees have their best performance when they are balanced, whi
C++: binary search trees have their best performance when they are balanced, which means that at each node n, the size the size of the left subtree of n is within one of the size …
C++: can somebody help delete all of this in my program: //#include //
C++: can somebody help delete all of this in my program: //#include <cstring> //#include <cctype> //#include <cstdlib> The main idea of this Assignment to remove…
C++: code provided is already working for playing the sudoku game, you must impl
C++: code provided is already working for playing the sudoku game, you must implement the readBoard() function to properly set up the board for playing from the specified file. Yo…
C++: create a simple staticArray class with templates and iterators. Requirement
C++: create a simple staticArray class with templates and iterators. Requirements for the staticArray class: 1.Create two private member variables: a.A static const int MAX set to…
C++: create a simple staticArray class with templates and iterators. Requirement
C++: create a simple staticArray class with templates and iterators. Requirements for the staticArray class: 1.Create two private member variables: a.A static const int MAX set to…
C++: given the following class interface containing static members . 4. Given th
C++: given the following class interface containing static members . 4. Given the following class interface (partial) containing static members: class statClass public static void…
C++: given the following class interface containing static members . 4. Given th
C++: given the following class interface containing static members . 4. Given the following class interface (partial) containing static members: class statClass public static void…
C++: im having trouble with this. i need help! 1. Write the class of a class cal
C++: im having trouble with this. i need help! 1. Write the class of a class called Fraction using the UML given below. The name of the class must be called Fraction.h Fraction nu…
C++: implement a non-recursive version or inorder traversal for binary tree. Ple
C++: implement a non-recursive version or inorder traversal for binary tree. Please implement the nonRecInorder() function as well as the levelOrder() function: Important: -The al…
C++: implement a non-recursive version or inorder traversal for binary tree. Ple
C++: implement a non-recursive version or inorder traversal for binary tree. Please implement the nonRecInorder() function as well as the levelOrder() function: Important: -Use qu…
C++: only use Strings in this question. Write a program to read the input file,
C++: only use Strings in this question. Write a program to read the input file, shown below and write out the output file shown below. Use only string objects and string functions…
C++: write a structure called student that has three members called id(int), gpa
C++: write a structure called student that has three members called id(int), gpa(double), name(name[size]). In main declare an array of pointers of type student. The size of this …
C++:Arrays, functions, output formatting Objectives : Declare and use a constant
C++:Arrays, functions, output formatting Objectives: Declare and use a constant, create and use arrays, create and use functions, create prototypes for functions, create random nu…
C++:Can you please help with this assignment? In this exercise, you are helping
C++:Can you please help with this assignment? In this exercise, you are helping the school to create a Records system. The scenario (required classes) is briefly described as foll…
C++:PLEASE HELP CODE: #include #include \"SLL.h\" using namespace std
C++:PLEASE HELP CODE: #include <iostream> #include "SLL.h" using namespace std; template <class V> class HashTable { int tableSize; // table size SLL<V&g…
C++:The attached text file contains an unknown quantity of positive real numbers
C++:The attached text file contains an unknown quantity of positive real numbers. Write a program that reads the numbers into an array. Find the minimum and maximum value of the n…
C++; Header file // ------------------------------------------------------------
C++; Header file // ------------------------------------------------------------- // // Set resultString[] to a string value that is a copy of a specified substring of original st…
C++; This project is based on the Video Store. The Video Store will do the follo
C++; This project is based on the Video Store. The Video Store will do the following tasks: Rent a video; that is, check out a video. Return, or check in, a video. Create a list o…
C++Ask the user for a number between 1 and 11; stop asking when the user enters
C++Ask the user for a number between 1 and 11; stop asking when the user enters 0 OR when the total goes over 21. Display the total on the screen. For example: C++ Enter a number …
C++Program 3 Input: The inputs are the two files ev10.csv and elect12.csv File 1
C++Program 3 Input: The inputs are the two files ev10.csv and elect12.csv File 1: ev10.csv 55 CA 38 TX 29 FL 29 NY 20 IL 20 PA 18 OH 16 GA 16 MI 15 N…
C++Program 3 Input: The inputs are the two files ev10.csv and elect12.csv File 1
C++Program 3 Input: The inputs are the two files ev10.csv and elect12.csv File 1: ev10.csv 55 CA 38 TX 29 FL 29 NY 20 IL 20 PA 18 OH 16 GA 16 MI 15 N…
C++Program 3 Input: The inputs are the two files ev10.csv and elect12.csv File 1
C++Program 3 Input: The inputs are the two files ev10.csv and elect12.csv File 1: ev10.csv 55 CA 38 TX 29 FL 29 NY 20 IL 20 PA 18 OH 16 GA 16 MI 15 N…