Browse W
Alphabetical listing with fast deep pagination.
66619 items • Page 1052 / 1333
Write a program in C++ that creates two rectangular shapes and then animates the
Write a program in C++ that creates two rectangular shapes and then animates them. The two shapes should start on opposite ends of the screen and then move toward each other. When…
Write a program in C++ that displays a weekly payroll report. A loop in the prog
Write a program in C++ that displays a weekly payroll report. A loop in the program should ask the user for the emplyee number, gross pay, state tax, federal tax, and FICA withhol…
Write a program in C++ that displays a weekly payroll report. A loop in the prog
Write a program in C++ that displays a weekly payroll report. A loop in the program should ask the user for the emplyee number, gross pay, state tax, federal tax, and FICA withhol…
Write a program in C++ that does the following: Read an array of numbers from a
Write a program in C++ that does the following: Read an array of numbers from a text file (ask the user for the file name). Calculate their average and standard deviation. Then pr…
Write a program in C++ that helps the user calculate both the distance between t
Write a program in C++ that helps the user calculate both the distance between two points in the 2D Cartesian plane and the midpoint of the line segment those two points define. T…
Write a program in C++ that helps the user calculate both the distance between t
Write a program in C++ that helps the user calculate both the distance between two points in the 2D Cartesian plane and the midpoint of the line segment those two points define. T…
Write a program in C++ that implements the ADT vehicle (a class with at least on
Write a program in C++ that implements the ADT vehicle (a class with at least one pure virtual function). Information you may want to keep about a vehicle includes · identif…
Write a program in C++ that implements the Decimal data type using a class calle
Write a program in C++ that implements the Decimal data type using a class called SmallDecimal. This class will allow users to create positive decimal values ( 0) and perform arit…
Write a program in C++ that implements the FIFO and LRU page-replacement algorit
Write a program in C++ that implements the FIFO and LRU page-replacement algorithms. Use the following page-reference string: 0, 1, 2, 3, 2, 4, 5, 3, 4, 1, 6, 3, 7, 8, 7, 8, 4, 9,…
Write a program in C++ that keeps track of a car database. The program should lo
Write a program in C++ that keeps track of a car database. The program should load the cars information from a data file once the program is started. It should allow user to view,…
Write a program in C++ that manages a schedule of classes for a college. I want
Write a program in C++ that manages a schedule of classes for a college. I want the header code and class code of section The Days Of Week class I done something on The Days Of We…
Write a program in C++ that merges the numbers in two files and writes all the n
Write a program in C++ that merges the numbers in two files and writes all the numbers into a third file. Your program takes input from two different files and writes its output t…
Write a program in C++ that permits to: a. Define an array A[n] of real numbers
Write a program in C++ that permits to: a. Define an array A[n] of real numbers (n constant). b. Define an array B[m] of real numbers (m constant). c. Fill in the two vectors with…
Write a program in C++ that present the following proverbs one at a time and pro
Write a program in C++ that present the following proverbs one at a time and promote the user to evaluate them as true or false. The program should then tell the user how many que…
Write a program in C++ that prompts the user for a number within the range of 1
Write a program in C++ that prompts the user for a number within the range of 1 through 5 then have the program print out the Roman numeral equivalent of that number listed in the…
Write a program in C++ that prompts the user to input a sequence of characters a
Write a program in C++ that prompts the user to input a sequence of characters and outputs the number of vowels: Use the function we wrote in class that inputs a character and ret…
Write a program in C++ that reads a data file and determine the first, second, a
Write a program in C++ that reads a data file and determine the first, second, and third order derivatives from the data. The program should: Print output to screen and a file. Fo…
Write a program in C++ that reads an angle x (in radians) from the keyboard, the
Write a program in C++ that reads an angle x (in radians) from the keyboard, then User will be promptedto choice the method to calculate the cosine of the angle, there will be thr…
Write a program in C++ that reads in a group of numbers, A, on one line and anot
Write a program in C++ that reads in a group of numbers, A, on one line and another group, B, on the next line of standard input. Using std::set (or std::map) print out if A is a …
Write a program in C++ that reads the data from a text file and performs the fol
Write a program in C++ that reads the data from a text file and performs the following calculations and displays it on the screen. Note that, you should make use of pointers and c…
Write a program in C++ that reads the integer n (n should be larger than 8) and
Write a program in C++ that reads the integer n (n should be larger than 8) and measures the maximum number of modulus operations to compute the gcd of two integers in the range 8…
Write a program in C++ that removes the duplicates from a given array. You will
Write a program in C++ that removes the duplicates from a given array. You will use a binary search tree to implement the following algorithm 1. You will create an array of 100 in…
Write a program in C++ that simulates a soft drink machine . The program will ne
Write a program in C++ that simulates a soft drink machine. The program will need several classes: DrinkItem, DrinkMachine and Receipt. For each of the classes you must create the…
Write a program in C++ that stores cars in an array and that can add, remove, pr
Write a program in C++ that stores cars in an array and that can add, remove, print and list cars. The commands for adding, removing, printing and listing will come from a file (s…
Write a program in C++ that uses a structure named MovieData to store the follow
Write a program in C++ that uses a structure named MovieData to store the following information about a movie: - Title - Director - Year Released - Running Time (in minutes) The p…
Write a program in C++ that uses nested loops to read data from a file and calcu
Write a program in C++ that uses nested loops to read data from a file and calculate the average rainfall per year and the overall average for all 5 years. The outer loop will ite…
Write a program in C++ that uses two stacks to implement a queue. You will imple
Write a program in C++ that uses two stacks to implement a queue. You will implement all of the basic functions of a queue container: push: add an element onto the end of the queu…
Write a program in C++ that uses while loops performing the following steps: Mak
Write a program in C++ that uses while loops performing the following steps: Make sure to use while loop only. No "for loop." A.Prompt the user to input two integers: firstNum and…
Write a program in C++ that validates a password according to the following rule
Write a program in C++ that validates a password according to the following rules: -The password must be at least 8 characters long -It must contain at least one upper-case letter…
Write a program in C++ that will accept command line options to use in the progr
Write a program in C++ that will accept command line options to use in the program. Command line option 1 will be the program name. Option 2 (if used) will be ‘-p’ and that will p…
Write a program in C++ that will check a new password and make sure it’s valid.
Write a program in C++ that will check a new password and make sure it’s valid. The program will start by asking the user to enter his/her full name (the full name must be stored …
Write a program in C++ that will input a phrase and convert it to pig latin. Put
Write a program in C++ 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 conc…
Write a program in C++ that will randomly choose colors, and depending on the op
Write a program in C++ that will randomly choose colors, and depending on the options chosen, randomly choose shapes. Constraints: Prompt the user for the size of the image. The i…
Write a program in C++ that will read in a line of text and output (1) the numbe
Write a program in C++ that will read in a line of text and output (1) the number of words in the line; and (2) the number of occurrences of each letter in alphabetical order usin…
Write a program in C++ that will search soccer players data to check whether a n
Write a program in C++ that will search soccer players data to check whether a name supplied by the user is on that list. For doing the search, the user may provide either the pla…
Write a program in C++ to allow the user to play a one-user simplified Keno game
Write a program in C++ to allow the user to play a one-user simplified Keno game. The program will contain the following: - A one-dim. array of ints of size 20(bold) for the offic…
Write a program in C++ to ask the user to input two different numbers of type do
Write a program in C++ to ask the user to input two different numbers of type double called actual and estimated. The program should do the following: Check if estimated is differ…
Write a program in C++ to calculate the magnitude and angle of a vector given po
Write a program in C++ to calculate the magnitude and angle of a vector given point x and point y in the x-y plane. The angle should be expressed in both radians and degrees, meas…
Write a program in C++ to develop an algorithm to simulate a single elevator in
Write a program in C++ to develop an algorithm to simulate a single elevator in a 10-story building. There will be some simplifying assumptions that will make this a bit less comp…
Write a program in C++ to develop an algorithm to simulate a single elevator in
Write a program in C++ to develop an algorithm to simulate a single elevator in a 10-story building. There will be some simplifying assumptions that will make this a bit less comp…
Write a program in C++ to develop an algorithm to simulate a single elevator in
Write a program in C++ to develop an algorithm to simulate a single elevator in a 10-story building. There will be some simplifying assumptions that will make this a bit less comp…
Write a program in C++ to develop an algorithm to simulate a single elevator in
Write a program in C++ to develop an algorithm to simulate a single elevator in a 10-story building. There will be some simplifying assumptions that will make this a bit less comp…
Write a program in C++ to develop an algorithm to simulate a single elevator in
Write a program in C++ to develop an algorithm to simulate a single elevator in a 10-story building. There will be some simplifying assumptions that will make this a bit less comp…
Write a program in C++ to display the following information from Linux. 1. Gener
Write a program in C++ to display the following information from Linux. 1. General information. In this section you will assemble some basic facts about the system a. Machine na…
Write a program in C++ to do the following: Your program should perform the foll
Write a program in C++ to do the following: Your program should perform the following: a. Randomly generate three integer arrays A1, A2, and A3 of sizes N=103 , 105 , and 107 (or …
Write a program in C++ to do the following: Your program should perform the foll
Write a program in C++ to do the following: Your program should perform the following: a. Randomly generate three integer arrays A1, A2, and A3 of sizes N=103 , 105 , and 107 (or …
Write a program in C++ to dynamically allocate some char buffers, uses memset to
Write a program in C++ to dynamically allocate some char buffers, uses memset to fill them , and use memcpy and memmove to move the data arround Part 3a. a. Allocate 2 char bu…
Write a program in C++ to find the number of comparisons using the binary search
Write a program in C++ to find the number of comparisons using the binary search and sequential search algorithms as follows: Suppose list is an array of 1000 elements. a. Use…
Write a program in C++ to given two integers k and n, your program determines th
Write a program in C++ to given two integers k and n, your program determines the maximum number of k by n matrices with the following constraints. The matrices contain only 0s an…
Write a program in C++ to implement a stack for the same data and show its imple
Write a program in C++ to implement a stack for the same data and show its implementation. Here is the structure and class definitions you will need for this problem. struct Stack…