Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 81 / 1624
C++ The sales manager at Tompkins Company wants a program that calculates and di
C++ The sales manager at Tompkins Company wants a program that calculates and displays each salesperson's commission, which is 10% of his or her sales. It also should display the …
C++ The sequential search algorithm as given in this chapter does not assume tha
C++ The sequential search algorithm as given in this chapter does not assume that the list is in order. Therefore, it usually works the same for both sorted and unsorted lists. Ho…
C++ The volume of a cone is given by the formula: V = r2 h / 3 For the value of
C++ The volume of a cone is given by the formula: V = r2 h / 3 For the value of use: const double PI = 3.14159265358979323846; Declare a structure named: Cone containing: Create t…
C++ These are the codes: #include #include #include
C++ These are the codes: #include <iostream> #include<string> #include<stdio.h> using namespace std; class student { string name; int id; short m1,m2,m3; float a…
C++ This 50 record file consists of a (8-digit numeric) student id, 8 assignment
C++ This 50 record file consists of a (8-digit numeric) student id, 8 assignment's points, midterm points, lab exercise points, CodeLab points, and final points. All of the input …
C++ This assignment is to give you practice using one-dimensional arrays and sor
C++ This assignment is to give you practice using one-dimensional arrays and sorting. In competitive diving, each diver makes dives of varying degrees of difficulty. Nine judges s…
C++ This assignment will consist of writing several functions that manipulate ar
C++ This assignment will consist of writing several functions that manipulate arrays or access data from arrays, as well as a test program that will allow interactive testing of t…
C++ This code creates a deck for a game in another file. My issue is everytime I
C++ This code creates a deck for a game in another file. My issue is everytime I compile the code and get an executable , the results are the same in terms of the deck being shuff…
C++ This exercise will provide practice in working with structs and arrays. Alth
C++ This exercise will provide practice in working with structs and arrays. Although there might be many ways of doing the assignment, it must be done exactly as specified here (f…
C++ This group assignment is designed to test your ability to use classes, frien
C++ This group assignment is designed to test your ability to use classes, friend function(s), assignment operators, and dynamic allocation. Please note, you will need to use all …
C++ This is a a few programs I need completed all in C++. The first part followi
C++ This is a a few programs I need completed all in C++. The first part following this is the deliverables required and the steps required for each exercise. After that will be t…
C++ This is a a few programs I need completed all in C++. The first part followi
C++ This is a a few programs I need completed all in C++. The first part following this is the deliverables required and the steps required for each exercise. After that will be t…
C++ This is part 2 of a two part assignment. Your score on this assignment will
C++ This is part 2 of a two part assignment. Your score on this assignment will take into consideration your work on both the previous assignment and this assignment. This assignm…
C++ This lab is based on \"Using Files - Population Bar Chart\" at the end of Ch
C++ This lab is based on "Using Files - Population Bar Chart" at the end of Chapter 5.In this lab, you must read the data from a file. The input data file: people.txt is attached …
C++ This program I created compiles all the way to the end, but has an error at
C++ This program I created compiles all the way to the end, but has an error at the end "RUN FAILED (exit value 1,........). Please help me find the error...... #include <cstdl…
C++ This program brings up the menu properly but exits immediately. I would like
C++ This program brings up the menu properly but exits immediately. I would like the user to choose 2 menu choices but when i run it now the computer chooses 2 to fight. It choose…
C++ This program brings up the menu properly but exits immediately. I would like
C++ This program brings up the menu properly but exits immediately. I would like the user to choose 2 menu choices but when i run it now the computer chooses 2 to fight. It choose…
C++ This program consist of two parts: 1) reading and processing a student data
C++ This program consist of two parts: 1) reading and processing a student data file, and writing the results to a student report file 2) modifying part 1 to calculate some statis…
C++ This program needs to be modified to the following: 1. Replace Employee and
C++ This program needs to be modified to the following: 1. Replace Employee and Department classes with Employee and Department Structures. 2. Inside each structure, replace all s…
C++ This program needs to be modified to the following: 1. Replace Employee and
C++ This program needs to be modified to the following: 1. Replace Employee and Department classes with Employee and Department Structures. 2. Inside each structure, replace all s…
C++ This program needs to be modified to the following: 1. Replace Employee and
C++ This program needs to be modified to the following: 1. Replace Employee and Department classes with Employee and Department Structures. 2. Inside each structure, replace all s…
C++ This program needs to be modified to the following: 1. Replace Employee and
C++ This program needs to be modified to the following: 1. Replace Employee and Department classes with Employee and Department Structures. 2. Inside each structure, replace all s…
C++ This program will have names and addresses saved in a linked list. In additi
C++ This program will have names and addresses saved in a linked list. In addition, a birthday and anniversary date will be saved with each record. When the program is run, it wil…
C++ This should be a simple edit of the origional code from 3.8. Complete the ad
C++ This should be a simple edit of the origional code from 3.8. Complete the additions of 3.15 before completing the main problem I am stuck on ( 20.8 ) 3.15 : Revise Listing 3.8…
C++ This system of programs implements and tests a class that encapsulates vario
C++ This system of programs implements and tests a class that encapsulates various functions related to dates. Here are the specifications: 1. Store the month, day, and year in se…
C++ This week I want you to write a program that contains a custom class that mo
C++ This week I want you to write a program that contains a custom class that models a Taco profile for some Taco sharing app. The Taco class will have the following private membe…
C++ This week we are continuing our exploration of structs and arrays. Last time
C++ This week we are continuing our exploration of structs and arrays. Last time we created a struct that contain an array. This time, we are making a struct and then we are makin…
C++ Tic-Tac-Toe (2 parts) 1. Write a program that allows two players (player X a
C++ Tic-Tac-Toe (2 parts) 1. Write a program that allows two players (player X and player O) to play a game of tic-tac-toe. Use a two- dimensional char array with three rows and t…
C++ Tic-Tac-Toe Game Write a program that allows two players to play a game of t
C++ Tic-Tac-Toe Game Write a program that allows two players to play a game of tic-tac-toe. Use a two- dimensional char array with three rows and three columns as the game board. …
C++ Time Class Define a class to represent time. The class should provide the fo
C++ Time Class Define a class to represent time. The class should provide the following methods in the public user interface: A constructor that takes one integer parameter, a tim…
C++ Time the creation of an array that holds two million integer random values b
C++ Time the creation of an array that holds two million integer random values between -10,000 and 10,000, sorted. Print out the middle 200 values, 20 values per line. Time the…
C++ Timing Tests of Sorting functions C++ running timing tests on the algorithms
C++ Timing Tests of Sorting functions C++ running timing tests on the algorithms. You can download my sorts.h file and include it. Call each method with a single vector of (probab…
C++ Timing Tests of Sorting functions C++ running timing tests on the algorithms
C++ Timing Tests of Sorting functions C++ running timing tests on the algorithms. You can download my sorts.h file and include it. Call each method with a single vector of (probab…
C++ TrainStation Program Create a function called searchForSchedules that will:
C++ TrainStation Program Create a function called searchForSchedules that will: - prompt a user to enter a scheduleId - search for arrival and departure times of trains based on a…
C++ Tree Balancing Problem How would you define the isBalance() function to chec
C++ Tree Balancing Problem How would you define the isBalance() function to check if the tree is balanced with the following code? #include <iostream> using namespace std; /…
C++ True and False Questions _____ F _____ The copy constructor is always called
C++ True and False Questions _____ F _____ The copy constructor is always called during the declaration of an object _____ F _____ Function overloading is used when different func…
C++ True false and multiple choice. 1. You can change the behavior of + for the
C++ True false and multiple choice. 1. You can change the behavior of + for the int type using operator overloading. 2. Overloading a binary operator as a member requires two argu…
C++ True or False Questions 1. In this course, we will be marking all of our ope
C++ True or False Questions 1. In this course, we will be marking all of our operators as friend functions. True or False? 2. Although there are exceptions to this rule, C++ progr…
C++ True or False Questions No Q #1, #9-11 2. Although there are exceptions to t
C++ True or False Questions No Q #1, #9-11 2. Although there are exceptions to this rule, C++ programmers have the power to decide what two parameters their operators take and wha…
C++ Two stacks of positive integers are needed, one containing elements with val
C++ Two stacks of positive integers are needed, one containing elements with values less than or equal to 1,000 and the other containing elements with values larger than 1,000. Th…
C++ Two stacks of positive integers are needed, one containing elements with val
C++ Two stacks of positive integers are needed, one containing elements with values less than or equal to 1,000 and the other containing elements with values larger than 1,000. Th…
C++ Two- Dimensional Arrays: If necessary, create a new project named Intermedia
C++ Two- Dimensional Arrays: If necessary, create a new project named Intermediate22 Project and save it to the CppChap12 folder. Also create a new source file named Intermediate.…
C++ UNSORTED LIST This a C++ program related to Unsorted list as a linked struct
C++ UNSORTED LIST This a C++ program related to Unsorted list as a linked structure (even though I called it sorted list). I get 5 errors in my code (I think all of them from "Get…
C++ US?NG NODE A intList of elements of type integer is a finite sequence of ele
C++ US?NG NODE A intList of elements of type integer is a finite sequence of elements of integer together with the following operations: *Construct the list, leaving it empty. *De…
C++ USE GETLINE. For this lab you are to use the STL stack which you can obtain
C++ USE GETLINE. For this lab you are to use the STL stack which you can obtain by putting #include<stack> at the top of your program, and having the std namespace open, of …
C++ USING CLASSES (NEED A HEADER FILE AND PROGRAM) Use the classes you have writ
C++ USING CLASSES (NEED A HEADER FILE AND PROGRAM) Use the classes you have written in the lab (Die and Pair of Dice) to design and implement the MyGame class. This class represen…
C++ USING CLASSES INHERITANCE INCLUDE ACCOUNT.H, ACCOUNT.CPP, SAVINGSACCOUNT.H,
C++ USING CLASSES INHERITANCE INCLUDE ACCOUNT.H, ACCOUNT.CPP, SAVINGSACCOUNT.H, SAVINGSACCOUNT.H.CPP, CHECKINGACCOUNT.H, CHECKINGACCOUNT.CPP, AND MAIN.CPP Create a bank with two d…
C++ Unzipping a File (Manipulating data within a file). (You can only use the he
C++ Unzipping a File (Manipulating data within a file). (You can only use the headers #include <fstream> #include <string> #include <algorithm> ) 2) Required fun…
C++ Use 2D arrays: 1. Write a program that creates and programmatically initiali
C++ Use 2D arrays: 1. Write a program that creates and programmatically initializes a two-dimensional array with test data. Use any numeric data type you wish. The program should …
C++ Use Composition: Design a TimeCard class that allows a company to pay a work
C++ Use Composition: Design a TimeCard class that allows a company to pay a worker for a day’s labor. The worker uses the time card to punch in at the beginning of the day and …