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

Chemistry concepts and calculations

117302 questions • Page 2080 / 2347

Write a C++ program that plays the game of \"guess the number”. The program shou
Write a C++ program that plays the game of "guess the number”. The program should continue playing as long as the user did not guess the correct number. First, declare theNumber a…
Write a C++ program that prompts a user to enter three numbers, and writes the n
Write a C++ program that prompts a user to enter three numbers, and writes the numbers to a file called "numbers.txt" Close the file before exiting the program. This is how my fil…
Write a C++ program that prompts the user to enter a hexadecimal value, multipli
Write a C++ program that prompts the user to enter a hexadecimal value, multiplies it by ten, then displays the result in hexadecimal. #include <iostream> #include <cstri…
Write a C++ program that queries the user for an input string and a 3-character
Write a C++ program that queries the user for an input string and a 3-character substring. Then perform the following: 1. Check length of substring; print error and return if not …
Write a C++ program that read a text file as a Maze, and output its path. You ca
Write a C++ program that read a text file as a Maze, and output its path. You can move Up, Down, Left and Right, and you may move only one cell at a time. use a 2-D array to store…
Write a C++ program that reads an unspecified number of temperatures in Celcius
Write a C++ program that reads an unspecified number of temperatures in Celcius from the keyboard (prompt the user to enter them one at a time). The values should be added to a ve…
Write a C++ program that reads in three exam grades from the input data file gra
Write a C++ program that reads in three exam grades from the input data file grades.txt. The program should print the grades, and calculate and print the average to the output dat…
Write a C++ program that reads in three exam grades from the input data file gra
Write a C++ program that reads in three exam grades from the input data file grades.txt. The program should print the grades, and calculate and print the average to the output dat…
Write a C++ program that requests five integer values from the user. It then pri
Write a C++ program that requests five integer values from the user. It then prints the maximum and minimum values entered. If the user enters the values 3, 2, 5, 0, and 1, the pr…
Write a C++ program that simulates a game where a player throws 5 dice and can r
Write a C++ program that simulates a game where a player throws 5 dice and can reroll all of the dice (all or none) if the player wants. A player can only reroll all the dice once…
Write a C++ program that takes as input an arithmetic expression. The program ou
Write a C++ program that takes as input an arithmetic expression. The program outputs whether the expression contains matching grouping symbols. For example, the arithmetic expres…
Write a C++ program that that plays the rock paper scissors game A rock should b
Write a C++ program that that plays the rock paper scissors game A rock should beat scissors, scissors beats paper and paper beats rock. If both players choose the same choice, it…
Write a C++ program that use\'s a recursion function to issue instructions to so
Write a C++ program that use's a recursion function to issue instructions to solve the Towers of Hanoi puzzle and also write comments to explain how your code works and answer the…
Write a C++ program that use\'s a recursive function that writes out prime facto
Write a C++ program that use's a recursive function that writes out prime factorization of an input integer and comment to explain how the function works. Recursion is a programmi…
Write a C++ program that will allow the user to manage the storage portion of a
Write a C++ program that will allow the user to manage the storage portion of a digital music player. The music player will store the following information about each song: • Song…
Write a C++ program that will calculate and display the areas of some standard g
Write a C++ program that will calculate and display the areas of some standard geometric figures. Specifically, the program needs to display the areas of the following geometric f…
Write a C++ program that will construct an Array class that solves the array ind
Write a C++ program that will construct an Array class that solves the array index out of bound problem, and also allows the user to begin the array index starting at any integer,…
Write a C++ program that will implement a stack class using the list class provi
Write a C++ program that will implement a stack class using the list class provided below. Test your stack class by determining if the following strings have matching open and clo…
Write a C++ program that will implement a stack class using the list class provi
Write a C++ program that will implement a stack class using the list class provided below. Test your stack class by determining if the following strings have matching open and clo…
Write a C++ program that will open the text file ( class.txt ) and read the firs
Write a C++ program that will open the text file (class.txt) and read the first name, last name and 5 scores. The program should compute the average and the grade for each student…
Write a C++ program that will read in and analyze temperatures around the nation
Write a C++ program that will read in and analyze temperatures around the nation on a particular day. The input data will be in a text file called temperature.txt. The first line …
Write a C++ program that will read names followed by single test grade. The very
Write a C++ program that will read names followed by single test grade. The very first line of the file has a single number which represents the max number of points to make on a …
Write a C++ program that will read names followed by single test grade. The very
Write a C++ program that will read names followed by single test grade. The very first line of the file has a single number which represents the max number of points to make on a …
Write a C++ program that will read names followed by single test grade. The very
Write a C++ program that will read names followed by single test grade. The very first line of the file has a single number which represents the max number of points to make on a …
Write a C++ program that will read sets of three pairs of coordinates from a tex
Write a C++ program that will read sets of three pairs of coordinates from a text file. If these numbers represent three collinear points, your program will print the points and a…
Write a C++ program that: (1) defines and implements a hash class that construct
Write a C++ program that: (1) defines and implements a hash class that constructs a 23 element array (may be implemented using a vector, a deque, or a list, if you prefer), storin…
Write a C++ program that: 1. Requests a positive number “N” from the user that i
Write a C++ program that: 1. Requests a positive number “N” from the user that is in the range [1, 20]. If the user enters a number outside this range, display an error message an…
Write a C++ program to Implement the encryption and decryption functions for suc
Write a C++ program to Implement the encryption and decryption functions for such a scheme that will split the original file into two new files and vice versa. One of these two ne…
Write a C++ program to aid the DeAnza Bookstore in estimating its business for n
Write a C++ program to aid the DeAnza Bookstore in estimating its business for next quarter. Experience has shown that sales depend on whether a book is required or suggested, and…
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 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 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 keep records and perform statistical analysis for a class
Write a C++ program to keep records and perform statistical analysis for a class of students of their final exam. The class may have up to 20 students. It should ask for how many …
Write a C++ program to output the results for the following library functions. B
Write a C++ program to output the results for the following library functions. Be sure to use proper formatting and appropriate comments in your code. (1) The length of the follow…
Write a C++ program to read a text file containing a list of vocabulary words in
Write a C++ program to read a text file containing a list of vocabulary words in alphabetical order. I have the word (text) file that the program will read. The program should acc…
Write a C++ program to simulate a card distribution scheme among Dealer, Player
Write a C++ program to simulate a card distribution scheme among Dealer, Player and Card Shuffler in the black jack game by the Object Oriented Programming (OOP). The program shou…
Write a C++ program to solve problem 4 on p. 187 in the textbook with the follow
Write a C++ program to solve problem 4 on p. 187 in the textbook with the following modification: the input containing the 12 temperatures is stored in a file, not entered from th…
Write a C++ program to sort 4 integers in nondecreasing order. The 4 integers en
Write a C++ program to sort 4 integers in nondecreasing order. The 4 integers entered at the keyboard can be (1) all distinct (e.g. 2 1 3 4), (2) partially distinct (e.g. 1 4 1 2)…
Write a C++ program to sort 4 integers in nondecreasing order. The 4 integers en
Write a C++ program to sort 4 integers in nondecreasing order. The 4 integers entered at the keyboard can be (1) all distinct (e.g. 2 1 3 4), (2) partially distinct (e.g. 1 4 1 2)…
Write a C++ program to sort 4 integers in nondecreasing order. The 4 integers en
Write a C++ program to sort 4 integers in nondecreasing order. The 4 integers entered at the keyboard can be (1) all distinct (e.g. 2 1 3 4), (2) partially distinct (e.g. 1 4 1 2)…
Write a C++ program tol calculate the minimum number of coins (quarters, dimes,
Write a C++ program tol calculate the minimum number of coins (quarters, dimes, nickels, and pennies) required to make change. It will perform this calculation for three separate …
Write a C++ program using variables, if-else and for-loops that asks the user fo
Write a C++ program using variables, if-else and for-loops that asks the user for a number, N, and prints the first N numbers of the Fibonacci series. For example, if the user inp…
Write a C++ program where Two or more strings are anagrams if they contain exact
Write a C++ program where Two or more strings are anagrams if they contain exactly the same letters, ignoring capitalization, punctuation, and spaces. For example, "Information su…
Write a C++ program where Two or more strings are anagrams if they contain exact
Write a C++ program where Two or more strings are anagrams if they contain exactly the same letters, ignoring capitalization, punctuation, and spaces. For example, "Information su…
Write a C++ program where Two or more strings are anagrams if they contain exact
Write a C++ program where Two or more strings are anagrams if they contain exactly the same letters, ignoring capitalization, punctuation, and spaces. For example, "Information su…
Write a C++ program where Two or more strings are anagrams if they contain exact
Write a C++ program where Two or more strings are anagrams if they contain exactly the same letters, ignoring capitalization, punctuation, and spaces. For example, "Information su…
Write a C++ program where Two or more strings are anagrams if they contain exact
Write a C++ program where Two or more strings are anagrams if they contain exactly the same letters, ignoring capitalization, punctuation, and spaces. For example, "Information su…
Write a C++ program where Two or more strings are anagrams if they contain exact
Write a C++ program where Two or more strings are anagrams if they contain exactly the same letters, ignoring capitalization, punctuation, and spaces. For example, "Information su…
Write a C++ program which accepts a line of text entered by the user. The whole
Write a C++ program which accepts a line of text entered by the user. The whole message must not be stored in the program – instead, it must be read a character at a time, and as …