Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 925 / 1333

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Write a C++ program to calculate the date of a day that is n days after a given
Write a C++ program to calculate the date of a day that is n days after a given day: Oct 1st 2015 + 5 days = Oct 6th 2015 Use the functions: DayPlusN( month, day, year, and n)    …
Write a C++ program to calculate the pay for an employee. The program inputs the
Write a C++ program to calculate the pay for an employee. The program inputs the pay rate and the number of hours worked from the user. The program echoes the input information an…
Write a C++ program to calculate the pay for an employee. The program inputs the
Write a C++ program to calculate the pay for an employee. The program inputs the pay rate and the number of hours worked from the user. The program echoes the input information an…
Write a C++ program to calculate the ‘Catalan number’ as defined below: Cn= (1/n
Write a C++ program to calculate the ‘Catalan number’ as defined below: Cn= (1/n+1)((2n!)/(2n!(2n-n)!) where n0, C0=1, and(nk) = n!/(k!(n-k)!) DESCRIPTION: Print to screen the fol…
Write a C++ program to calculate velocity in 1-D. It is possible to approximate
Write a C++ program to calculate velocity in 1-D. It is possible to approximate double integrals (and higher dimensions) using the trapezoid method. The equations of motion are us…
Write a C++ program to check if the user\'s input is palindrome or not. You shou
Write a C++ program to check if the user's input is palindrome or not. You should use both stack and queue. Has to compare string in queue and stack to see if they are the same, i…
Write a C++ program to check if the users input has the balanced braces. You nee
Write a C++ program to check if the users input has the balanced braces. You need to use the stack to implement the structure.Modify program below. #include <iostream> #incl…
Write a C++ program to compute and display a person\'s weekly salary as determin
Write a C++ program to compute and display a person's weekly salary as determined by the following expressions: If the number of hours worked is less than or equal to 40, the pers…
Write a C++ program to compute the Fibonacci numbers. In mathematics, the sequen
Write a C++ program to compute the Fibonacci numbers. In mathematics, the sequence of Fibonacci numbers is defined by the following recurrence relation. Fn = Fn-1 + Fn-2, where F0…
Write a C++ program to compute the final grade for a course. Student name, ident
Write a C++ program to compute the final grade for a course. Student name, identifies students. The final grade is composed of two parts, homework average counts for 40 and test a…
Write a C++ program to compute the final grade for a course. Student name, ident
Write a C++ program to compute the final grade for a course. Student name, identifies students. The final grade is composed of two parts, homework average counts for 40 and test a…
Write a C++ program to compute the final grade for acourse. Student name, identi
Write a C++ program to compute the final grade for acourse. Student name, identifies students. The final grade iscomposed of two parts, homework average counts for 30 percent,clas…
Write a C++ program to convert an infix expression to a postfix expression using
Write a C++ program to convert an infix expression to a postfix expression using a stack. Hint: In a postfix expression operators appear after their operands, whereas in an infix …
Write a C++ program to convert infix arithmetic expressions to postfix and evalu
Write a C++ program to convert infix arithmetic expressions to postfix and evaluate the expression using its postfix notation. Your main function should display the following menu…
Write a C++ program to convert infix artihmetic expressions to postfix and evalu
Write a C++ program to convert infix artihmetic expressions to postfix and evaluate the expression using its postfix notation. Write a C++ program to convert infix arithmetic expr…
Write a C++ program to convert meters to feet. The program should request the st
Write a C++ program to convert meters to feet. The program should request the starting meter value, the number of conversions to be made, and the increment between metric values. …
Write a C++ program to convert velocities to alternate units as described below:
Write a C++ program to convert velocities to alternate units as described below: Use a single 2D array with 3 columns and 21 rows for the velocity values as follows: column 0 – ve…
Write a C++ program to convert velocities to alternate units as described below:
Write a C++ program to convert velocities to alternate units as described below: Use a single 2D array with 3 columns and 21 rows for the velocity value as follows: column 0 - vel…
Write a C++ program to convert velocities to alternate units as described below:
Write a C++ program to convert velocities to alternate units as described below: Use a single 2D array with 3 columns and 21 rows for the velocity values as follows: column 0 - ve…
Write a C++ program to count words and numbers in a plain text file. Words and n
Write a C++ program to count words and numbers in a plain text file. Words and numbers can be repeated. You can use any algorithm and data structures that you prefer, as long as t…
Write a C++ program to count words and numbers in a plain text file. Words and n
Write a C++ program to count words and numbers in a plain text file. Words and numbers can be repeated. You can use any algorithm and data structures that you prefer, as long as t…
Write a C++ program to count words and numbers in a plain text file. Words and n
Write a C++ program to count words and numbers in a plain text file. Words and numbers can be repeated. You can use any algorithm and data structures that you prefer, as long as t…
Write a C++ program to count words and numbers in a plain text file. Words and n
Write a C++ program to count words and numbers in a plain text file. Words and numbers can be repeated. You can use any algorithm and data structures that you prefer, as long as t…
Write a C++ program to count words and numbers in a plain text file. Words and n
Write a C++ program to count words and numbers in a plain text file. Words and numbers can be repeated. The input is one text file, with words and integers, separated by any other…
Write a C++ program to count words and numbers in a plain text file. Words and n
Write a C++ program to count words and numbers in a plain text file. Words and numbers can be repeated. The input is one text file, with words and integers, separated by any other…
Write a C++ program to count words and numbers in a plain text file. Words and n
Write a C++ program to count words and numbers in a plain text file. Words and numbers can be repeated. You can use any algorithm and data structures that you prefer, as long as t…
Write a C++ program to create 2 identical arrays, list1, and list2 – each list o
Write a C++ program to create 2 identical arrays, list1, and list2 – each list of 5000 elements. The program then sorts list1 using bubble sort, list2 using selection sort and out…
Write a C++ program to create a linked list of nodes of integers. The list, at i
Write a C++ program to create a linked list of nodes of integers. The list, at its time of construction, contains head and tail nodes. Each new node added to the list, at a random…
Write a C++ program to create a text file. Your file should contain the followin
Write a C++ program to create a text file. Your file should contain the following text: Batch files are text files created by programmer The file is written in the notepad. Creati…
Write a C++ program to create and display a month calendar. The user provides th
Write a C++ program to create and display a month calendar. The user provides the month and the starting day of that month as integer values. The calendar contains the date values…
Write a C++ program to determine which numbers between 5 and 500 are perfect num
Write a C++ program to determine which numbers between 5 and 500 are perfect numbers. Also, determine which numbers between 10 and 300 are prime numbers. Send your output to a fil…
Write a C++ program to display a table of values for side B, side H, angle a (in
Write a C++ program to display a table of values for side B, side H, angle a (in degrees) and alpha (in degrees) for the right triangle shown. Use a for loop to calculate H, alpha…
Write a C++ program to do the following number guessing game. First, the compute
Write a C++ program to do the following number guessing game. First, the computer should pick a random number from 1 to 9 without telling you the number. You get three chances to …
Write a C++ program to do the following. Prompt and get the user inputs for prin
Write a C++ program to do the following. Prompt and get the user inputs for principal loan amount, interest rate(as %) and the monthly payment. Divide the interest rate by 100.0 (…
Write a C++ program to do the following: 1. Define a function called \"differenc
Write a C++ program to do the following: 1. Define a function called "difference" that can accept two integer values as arguments and returns an integer (which is the obtained by …
Write a C++ program to do the following: 1. Enter the following car information
Write a C++ program to do the following: 1. Enter the following car information Model . Year . Price Had an accident (Y:Yes N:No)? 2. Find the car price after 20% discount 3. If t…
Write a C++ program to do the following: Declare an integer variable of size 4 b
Write a C++ program to do the following: Declare an integer variable of size 4 bytes. Set the variable to 2,147,483,645 and print it to the screen using std:cout. Add 1 to the var…
Write a C++ program to do the following: Define a function called \"difference\"
Write a C++ program to do the following: Define a function called "difference" that can accept two integer values as arguments and returns an integer (which is the obtained by sub…
Write a C++ program to do the following: Define a function called \"difference\"
Write a C++ program to do the following: Define a function called "difference" that can accept two integer values as arguments and returns an integer (which is the obtained by sub…
Write a C++ program to do the following: Define a function called \"difference\"
Write a C++ program to do the following: Define a function called "difference" that can accept two integer values as arguments and returns an integer (which is the obtained by sub…
Write a C++ program to do the following: Define a function called \"difference\"
Write a C++ program to do the following: Define a function called "difference" that can accept two integer values as arguments and returns an integer (which is the obtained by sub…
Write a C++ program to do the following: The attached file of English words begi
Write a C++ program to do the following: The attached file of English words beginning with a is all lower case in sorted order. Define a structure StringListElement with two membe…
Write a C++ program to do the following: The “main” section of the program will
Write a C++ program to do the following: The “main” section of the program will ask the user for the value of four resistors in your series circuit and the total voltage (V) appli…
Write a C++ program to encrypt a file using a key of a certain length. Text encr
Write a C++ program to encrypt a file using a key of a certain length. Text encryption is discussed below in detail. Your program should ask the user to input the file name that c…
Write a C++ program to estimate the springtime count of deer in apark for 10 con
Write a C++ program to estimate the springtime count of deer in apark for 10 consecutive years. Thepopulation of any given year depends on the previous year'spopulation according …
Write a C++ program to evaluate postfix expressions. Your program should take po
Write a C++ program to evaluate postfix expressions. Your program should take postfix expression as an input, process it with the help of stack and display the result after perfor…
Write a C++ program to exercise on c-string char array andrelated library functi
Write a C++ program to exercise on c-string char array andrelated library functions. Make two char arrays each can hold asmany as 80 characters. Ask user to input two phases and s…
Write a C++ program to exercise on c-string char array andrelated library functi
Write a C++ program to exercise on c-string char array andrelated library functions. Make two char arrays each can hold asmany as 80 characters. Ask user to input two phases and s…
Write a C++ program to exercise on c-string char array andrelated library functi
Write a C++ program to exercise on c-string char array andrelated library functions. Make two char arrays each can hold asmany as 80 characters. Ask user to input two phases and s…
Write a C++ program to find a path using the A* Algorithm. Prompt the user for t
Write a C++ program to find a path using the A* Algorithm. Prompt the user for the text file name containing the map. Then prompt the user for the starting and stopping locations.…