Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 1506 / 1624
c++ Design a class for a sales person that has the following members variable: E
c++ Design a class for a sales person that has the following members variable: EID: To holds the sales person’s employment ID Firstname: To holds the sales person’s first name. La…
c++ Design and define a Person structure. Each person has a first name, last nam
c++ Design and define a Person structure. Each person has a first name, last name, and age Declare an array of 3 persons. Allow the user to populate the array Write a function tha…
c++ Design and implement the following game: N players (who are alligators) take
c++ Design and implement the following game: N players (who are alligators) take turns tossing a pair of dice to earn points. The player whose total points first equals M, some po…
c++ Design your class using both the interface (header) file and the implementat
c++ Design your class using both the interface (header) file and the implementation (.cpp) file capture the output given below. please give the same as the output. Thank you 1. MA…
c++ Dynamic 1-D array Create three dynamically allocated arrays (x, y, and z) of
c++ Dynamic 1-D array Create three dynamically allocated arrays (x, y, and z) of size N, where N is a number entered by the user. Populate x with even numbers and y with odd numbe…
c++ Dynamic 1-D array Create three dynamically allocated arrays (x, y, and z) of
c++ Dynamic 1-D array Create three dynamically allocated arrays (x, y, and z) of size N, where N is a number entered by the user. Populate x with even numbers and y with odd numbe…
c++ Dynamic 1-D array Create three dynamically allocated arrays (x, y, and z) of
c++ Dynamic 1-D array Create three dynamically allocated arrays (x, y, and z) of size N, where N is a number entered by the user. Populate x with even numbers and y with odd numbe…
c++ Employee Class. Write a class named Employee, with the class declaration in
c++ Employee Class. Write a class named Employee, with the class declaration in a file called Employee.h and the implementation in a file called Employee.cpp. The class should hav…
c++ Employee Class. Write a class named Employee, with the class declaration in
c++ Employee Class. Write a class named Employee, with the class declaration in a file called Employee.h and the implementation in a file called Employee.cpp. The class should hav…
c++ File Tools CSC 372 Program 1 Fall 2018-1 [Read-Onlyl]- Word Navigation CSC 3
c++ File Tools CSC 372 Program 1 Fall 2018-1 [Read-Onlyl]- Word Navigation CSC 372 Program Assignment 1: Due Date September 20th 11:59 PM Due Date: Tuesday, September 4th 1:29 PM …
c++ For this exercise, create 2 programs defined in files slow.cpp and fast.cpp
c++ For this exercise, create 2 programs defined in files slow.cpp and fast.cpp. In slow.cpp, generate a random array of size 200,000 and pass it to your sorting algorithm. Run th…
c++ For this lab, you will practice while loops, if statements, reading from an
c++ For this lab, you will practice while loops, if statements, reading from an input file, writing to an output files, and string operations. You are given a file containing prot…
c++ For this project, you will create a program that will later be used as part
c++ For this project, you will create a program that will later be used as part of a magic trick. Your program will create a deck of playing cards. The user will be prompted to se…
c++ For this project, you will create a program that will later be used as part
c++ For this project, you will create a program that will later be used as part of a magic trick. Your program will create a deck of playing cards. The user will be prompted to se…
c++ Format of clock.txt The first line of the file will contain a single positiv
c++ Format of clock.txt The first line of the file will contain a single positive integer, n, in between 1 and 20, inclusive, which represents the number of employees at the compa…
c++ Fundamental Programming (a) Consider each of the following questions careful
c++ Fundamental Programming (a) Consider each of the following questions carefully. You are required to give the answer true or false and justify your answer. If it is true, expla…
c++ Given the following memory model, write the code that: (1 pt) Write the code
c++ Given the following memory model, write the code that: (1 pt) Write the code that would have created the array (called x) of 5 ints (assume it gets placed in memory as shown (…
c++ Given the following memory model, write the code that: (1 pt) Write the code
c++ Given the following memory model, write the code that: (1 pt) Write the code that would have created the array (called x) of 5 ints (assume it gets placed in memory as shown (…
c++ GraphX.cpp /* GraphX.hpp * Interface for the GraphX class * This is a simple
c++ GraphX.cpp /* GraphX.hpp * Interface for the GraphX class * This is a simple user interface that will allow students to utilize * simple graphics operations in C++ labs. It is…
c++ GraphX.cpp /* GraphX.hpp * Interface for the GraphX class * This is a simple
c++ GraphX.cpp /* GraphX.hpp * Interface for the GraphX class * This is a simple user interface that will allow students to utilize * simple graphics operations in C++ labs. It is…
c++ GraphX.cpp /* GraphX.hpp * Interface for the GraphX class * This is a simple
c++ GraphX.cpp /* GraphX.hpp * Interface for the GraphX class * This is a simple user interface that will allow students to utilize * simple graphics operations in C++ labs. It is…
c++ GraphX.cpp /* GraphX.hpp * Interface for the GraphX class * This is a simple
c++ GraphX.cpp /* GraphX.hpp * Interface for the GraphX class * This is a simple user interface that will allow students to utilize * simple graphics operations in C++ labs. It is…
c++ Hi everyone, please help me to answear these Multiple choice Question. There
c++ Hi everyone, please help me to answear these Multiple choice Question. There is 16 of them, so hard so easy. If you are not sure of the one you're answearing please indicate t…
c++ Hi everyone, this is part two of multiple choice question. THERE IS 15 QUEST
c++ Hi everyone, this is part two of multiple choice question. THERE IS 15 QUESTION, please indicate the the answear you're not sure of. THANKS IN advance. 17. Consider the implem…
c++ How can I make the display_listreverse() use the same nodes instead of havin
c++ How can I make the display_listreverse() use the same nodes instead of having to create new ones? #include <iostream> using namespace std; struct Node { int data; Node* …
c++ I am puzzled on how to read an input file by line then count the characters
c++ I am puzzled on how to read an input file by line then count the characters a-z (either uppercase or lowercase) and then writing the char and count to an output file. I need t…
c++ I have a class that has an array of size 100. However, this 100 might not be
c++ I have a class that has an array of size 100. However, this 100 might not be used entirely, so I have a variable called size that would keep track of number of elements in eac…
c++ If a do... while structure is used a. An off-by-one error cannot occur b. An
c++ If a do... while structure is used a. An off-by-one error cannot occur b. An infinite loop cannot take place. c. The body of the loop will execute at least once. d. Counter-co…
c++ Imagine that the company you work for is going to create a lot of tutorials
c++ Imagine that the company you work for is going to create a lot of tutorials on Fractions. You are to create a robust Fraction class that will have all of the following (all e…
c++ Implement a function named fibo that will get a 20 element initialized an ar
c++ Implement a function named fibo that will get a 20 element initialized an array of zeros from the main function. It will set the array to the Fibonacci sequence. This sequence…
c++ Implement the hash algorithm as in here but use names instead of numbers. #i
c++ Implement the hash algorithm as in here but use names instead of numbers. #include <iostream> #include <fstream> using namespace std; int main() { ifstream infi…
c++ In a class section there are a number of students each studied different num
c++ In a class section there are a number of students each studied different number of courses. Create a class called Section that has the private members aumberQiStudents **stude…
c++ In this project, we will let the computer produce a list of all the unique w
c++ In this project, we will let the computer produce a list of all the unique words used in a given text file and their frequency of occurrence. The main object in this problem i…
c++ In this project, you will write the implementation of the PeopleList using a
c++ In this project, you will write the implementation of the PeopleList using a doubly linked list, which should be sorted alphabetically according to last name, then first name.…
c++ Inheritance programming:Rock,paper,Scissors You will implement a class calle
c++ Inheritance programming:Rock,paper,Scissors You will implement a class called Tool. It should have an int field called strength and a char field called type. You may make them…
c++ Learning Objectives: The objective of this lab is to gain experience working
c++ Learning Objectives: The objective of this lab is to gain experience working with linked list. Assignment: In this lab assignment, you are to write a class IntegerSet that …
c++ Many computer applications, such as Microsoft Excel, can compare date values
c++ Many computer applications, such as Microsoft Excel, can compare date values that occur after January 1, 1900. For example, these programs can determine if 06/06/99 is less th…
c++ Many websites ask for phone numbers. The problem is that there are so many d
c++ Many websites ask for phone numbers. The problem is that there are so many different ways to represent a phone number. Examples include 817-555-1234, 817 555 1234 (c), and (81…
c++ My output is wrong and don\'t know to fix it the code. #include u
c++ My output is wrong and don't know to fix it the code. #include <iostream> using namespace std; const int Row = 50; const int Col = 50; int index = 1; void getArray(int A…
c++ NOTE: It is REQURED that Each program must include this line: cout
c++ NOTE: It is REQURED that Each program must include this line: cout << "Name: YOURNAME - Program Name: PROGRAM NAME - Date: MMDDYY" << endl; * Be sure to add your n…
c++ Need my output sorted to dictionary order. The cards recognize the group the
c++ Need my output sorted to dictionary order. The cards recognize the group they need to be in, i just need them to print out in order. My code is included below. // Class to rep…
c++ Need my output sorted to dictionary order. The cards recognize the group the
c++ Need my output sorted to dictionary order. The cards recognize the group they need to be in, i just need them to print out in order. My code is included below. The numbers are…
c++ Objective: Create Inheritance Hierarchy to Demonstrate Polymorphic Behavior
c++ Objective: Create Inheritance Hierarchy to Demonstrate Polymorphic Behavior Create a Rectangle Class Derive a Square Class from the Rectangle Class Derive a Right Triangle Cla…
c++ Objective: Implement a non-trivial algorithm in C++. Problem: A Magic Square
c++ Objective: Implement a non-trivial algorithm in C++. Problem: A Magic Square of order N consists of N’ squares, each of which contains a number from 1 through N" such that the…
c++ Objective: To use two loops in a program to calculate population growth. Thi
c++ Objective: To use two loops in a program to calculate population growth. This program is about an imaginary animal called a jackalope. Each generation, the jackalope populatio…
c++ Objectives: Use an array Use a menu to call various functions Use multiple s
c++ Objectives: Use an array Use a menu to call various functions Use multiple sorts and searches Instructions: Code a program with methods to search and sort an array, along with…
c++ OpenGL Mathematics // Write a struct that supports a parametric representati
c++ OpenGL Mathematics // Write a struct that supports a parametric representation of a line // in three dimensional space. The constructor should take two points on // the line a…
c++ Overloading the operators , =, +, , ==, ||, and && for the class lineT
c++ Overloading the operators <<, >>, =, +, , ==, ||, and && for the class lineType BACKGROUND: -Equation of a line: ax+by=c is the standard equation for a lin…
c++ PROBLEM 1 A dog life span can be estimated based on its weight according to
c++ PROBLEM 1 A dog life span can be estimated based on its weight according to the following rules A dog that weights up to 3 Kg is estimated to live 17 years. Dog bve A dog that…
c++ PROBLEM 2 Use the following program shell for PROBLEMS 2 through 5. Write a
c++ PROBLEM 2 Use the following program shell for PROBLEMS 2 through 5. Write a program to print the following numbers right-justified in a column on the screen. Make the values n…