Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 1422 / 1624
Create a program that solves word anagrams using a hash table. Here\'s how to do
Create a program that solves word anagrams using a hash table. Here's how to do it... First make an AnagramSet class that stores a set of anagramatic words along with a key formed…
Create a program that sorts a user\'s hand into ascending order, based upon the
Create a program that sorts a user's hand into ascending order, based upon the worth of each card in the hand. For this problem, you should ask your user to identify the cards in …
Create a program that stores student grades in a text file. The file should cont
Create a program that stores student grades in a text file. The file should contain the name, ID number, class taken and grade of every student. Allow the user to load a grade fil…
Create a program that stores the information of up to 50 containers loaded on sh
Create a program that stores the information of up to 50 containers loaded on ship. The program should contain a menu to do the following: A or a to add a container. R or r …
Create a program that takes 2 arguments from the terminal. The first argument is
Create a program that takes 2 arguments from the terminal. The first argument is an infile (which will be a .txt wordlist) and the second argument is an outfile. Prompt the user w…
Create a program that takes in the following from user input: User full name, ge
Create a program that takes in the following from user input: User full name, gender, location, number of days and number of children. The program should then print out an invoice…
Create a program that tracks your progress as a student in this class. You will
Create a program that tracks your progress as a student in this class. You will need to store your name, student identification number, the sum of your quiz scores and the sum of …
Create a program that uses a Jagged Array. The program will create an array with
Create a program that uses a Jagged Array. The program will create an array with 50 rows. Each of the values for each element of the array will be randomly generated. The random v…
Create a program that uses a derived class based on the list class you Solution
Create a program that uses a derived class based on the list class you
Create a program that uses a derived class based on the list class you\'ve creat
Create a program that uses a derived class based on the list class you've created in the first program. This program will use a stack data type. class node {void * info; node * ne…
Create a program that uses a derived class based on the list class you’ve create
Create a program that uses a derived class based on the list class you’ve created in the first program. This program will use a stack data type. class node { void *info; node *nex…
Create a program that uses a derived class based on the list class you’ve create
Create a program that uses a derived class based on the list class you’ve created in the first program. This program will use a stack data type. class node { void *info; node *nex…
Create a program that uses a priority queue to collect user name and user age fr
Create a program that uses a priority queue to collect user name and user age from a system user and then displays those values in ascending order (regardless of the order in whic…
Create a program that uses a recursive function to check whether a number is in
Create a program that uses a recursive function to check whether a number is in a list of Sorted numbers. In order to understand recursion read your note from pre-requisite course…
Create a program that uses a switch statement and case statements to calculate t
Create a program that uses a switch statement and case statements to calculate the number of days in any given month based upon a users input. | February is a unique month. So the…
Create a program that uses a switch statement and case statements to calculate t
Create a program that uses a switch statement and case statements to calculate the number of days in any given month based upon a users input. February is a unique month. So the c…
Create a program that uses a while loop to sum only the odd numbers from 1 up to
Create a program that uses a while loop to sum only the odd numbers from 1 up to 50. Display the total sum of these odd numbers. Make sure you have appropriate comments and output…
Create a program that uses the False-Position method to estimate the zero of the
Create a program that uses the False-Position method to estimate the zero of the function f(x)= -0.1x^4 - 0.15x^3 -0.5x^2 -0.25x +12. You must solve the zero until the absolute va…
Create a program that uses the strstr() function to search the string \"When the
Create a program that uses the strstr() function to search the string "When the going gets tough, the tough stay put!" for the following occurrences (display each occurrence found…
Create a program that uses two classes. Each class will be in a separate source
Create a program that uses two classes. Each class will be in a separate source file with an appropriate header file. The first class is Die. It will have a data member to indicat…
Create a program that uses two equations that will calculate the effect of varia
Create a program that uses two equations that will calculate the effect of variance on a mean(or average) random signal level using arrays and the random function in the following…
Create a program that uses two equations that will calculate the effect of varia
Create a program that uses two equations that will calculate the effect of variance on a mean(or average) random signal level using arrays and the random function in the following…
Create a program that utilizes Java\'s new Graphic User Interface library FX. Th
Create a program that utilizes Java's new Graphic User Interface library FX. The goal of this project is to demonstrate basic FX GUI programming. The program needs to accept a pas…
Create a program that utilizes random number generators to play number guessing
Create a program that utilizes random number generators to play number guessing games with the user. The user has two game choices - Pick 1 (user picks one number) and Pick 3 (use…
Create a program that validates the nesting of elements in an XML document. The
Create a program that validates the nesting of elements in an XML document. The nesting rule simply states that while elements may be nested, they cannot overlap. This is one of t…
Create a program that will accept a message from the user and either encrypt ord
Create a program that will accept a message from the user and either encrypt ordecrypt it with the following algorithms: To encrypt: get the character you wish to encrypt find the…
Create a program that will allow the user to input a maximum of ten integer valu
Create a program that will allow the user to input a maximum of ten integer values (these values will be stored in an array . The program will then find the maximum value entered…
Create a program that will ask the user for two strings, StringA and then String
Create a program that will ask the user for two strings, StringA and then String B. The program will then create andprintout a new string (Output string) which has the elements of…
Create a program that will automatically adjust a variable resistor until the ma
Create a program that will automatically adjust a variable resistor until the maximum power is transferred to the load resister. Refer to Figure 1 for details. Create a program to…
Create a program that will calculate a student\'s GPA using switch statements. T
Create a program that will calculate a student's GPA using switch statements. The program should prompt the user for the number of courses (which determines a for loop counter). T…
Create a program that will calculate a student’s GPA using switch statements. Th
Create a program that will calculate a student’s GPA using switch statements. The program should prompt the user for the number of courses (which determines a for loop counter). T…
Create a program that will calculate and print to the screen a sales receipt. +
Create a program that will calculate and print to the screen a sales receipt. + Required:* 1. First 3 lines of code will be three comment lines a. Name of the cpp file b. Your nam…
Create a program that will calculate employee’s monthly gross pay as follows: In
Create a program that will calculate employee’s monthly gross pay as follows: Inputs: 1)Name 2)Annual Salary 3)Monthly Sales 4)Keeps asking for additional inputs and creating the …
Create a program that will calculate the factorial of any user entered integer.
Create a program that will calculate the factorial of any user entered integer. For any positive integer n, the factorial is given as: n! = n ? (n-1) ? (n-2) ? …… ? 3 ? 2 ? 1. The…
Create a program that will calculate the factorial of any user entered integer.
Create a program that will calculate the factorial of any user entered integer. For any positive integer n, the factorial is given as: n! = n ? (n-1) ? (n-2) ? …… ? 3 ? 2 ? 1. The…
Create a program that will calculate your weight on Mercury, Venus, Mars, and Ea
Create a program that will calculate your weight on Mercury, Venus, Mars, and Earth’s moon.Update your previous program. Create independent return functions that calculate each pl…
Create a program that will check the format for telephone numbers. Telephone num
Create a program that will check the format for telephone numbers. Telephone numbers should be entered as a string with the ?rst three characters followed by a dash and the last f…
Create a program that will compute and generate a table of coversions from Celsi
Create a program that will compute and generate a table of coversions from Celsius to Fahrenheit. The program user to select the lowest and highest temperatures in Celsius and the…
Create a program that will compute the mpg of a car. 1. The user must enter the
Create a program that will compute the mpg of a car. 1. The user must enter the number of gallons. 2. The user must enter the distance traveled. 3. The program will computer mpg a…
Create a program that will compute the mpg of a car. 1. The user must enter the
Create a program that will compute the mpg of a car. 1. The user must enter the number of gallons. 2. The user must enter the distance traveled. 3. The program will computer mpg a…
Create a program that will copy a block of data from one location to another one
Create a program that will copy a block of data from one location to another one byte at a time (i.e., USING A LOOP). The program must follow these requirements: You must use all …
Create a program that will encrypt letters and create a secret code. You will: c
Create a program that will encrypt letters and create a secret code. You will: create an array of numbers from 0 - 25. use [i for i in range (26)] to create an array of numbers fr…
Create a program that will estimate a child height based on the height of the pa
Create a program that will estimate a child height based on the height of the parents. The formulas (below) are based on gender. Ask the user to enter a String representing the ge…
Create a program that will estimate a child height based on the height of the pa
Create a program that will estimate a child height based on the height of the parents. The formulas (below) are based on gender. Ask the user to enter a String representing the ge…
Create a program that will fill in the numbers of a magic square. A magic square
Create a program that will fill in the numbers of a magic square. A magic square is a n x n grid in which the numbers 1, 2, 3, ….. n2 appear exactly one time, the sum of the each …
Create a program that will generate 50 random numbers between 1 and 10000, displ
Create a program that will generate 50 random numbers between 1 and 10000, display them in groups of 10 across, sort them, and again display them in groups of 10 across. SAMPLE OU…
Create a program that will generate 50 random numbers between 1 and 10000, displ
Create a program that will generate 50 random numbers between 1 and 10000, display them in groups of 10 across, sort them, and again display them in groups of 10 across. PLEASE US…
Create a program that will help a movie goer know which movie ratings will be ap
Create a program that will help a movie goer know which movie ratings will be appropriate for them or their family. Allow the user to enter an age and then based on that age sugge…
Create a program that will help a movie goer know which movie ratings will be ap
Create a program that will help a movie goer know which movie ratings will be appropriate for them or their family. Allow the user to enter an age and then based on that age sugge…
Create a program that will input a sentence and push each character onto the sta
Create a program that will input a sentence and push each character onto the stack all the while counting the number of characters. Then pop off each character and print them back…