Questions: 11 448

Answers by our Experts: 10 707

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

write a c++ program that keeps track of budget for a user, you need to ask him about his total salary at the start of the month and then calculate his saving after his expenses. ask him about his electricity bills, gas water and rent house and at the end display how much he has saved


Create a c++ quiz program, in this program it has a 10 questions that the user will answer. The program has the following functions:



A. It will show the message (Correct) if the the answer is correct and (Wrong) if the answer is wrong



B. It can compute the total score



C. If the user Failed in the quiz it will ask the user if he wants to retake the quiz. ( 6 is the passing rate)



C1.1If he select Yes he will take the quiz again.



C1.2. If he select No the program will automatically closed.



Extra 10 points: use system(“clear”) to clear the the previous data in the screenx

Create C++ full program that calculates the value of u. u=a+gv^2


Create and Implement a C++ program to make a class named Array_Operations


● Globally declare size of array.


● Data member of class should be a dynamic array.


● Set all values as zero in default constructor.


● Overload Subscript operator i.e. []


● Overload streams operators (should be friend functions)


o cin i.e. >> to input object values


o cout i.e. << to output/display values


● Now take 4 objects of class in main. Initialize values of 1st and 2nd array (using stream


operators >> and subscript [] overloading). Now overload +,-, operators to add and


subtract 1st and 2nd arrays and store the result in 3


rd and 4th array respectively. Now


display all arrays.

create a C++ full program that calculates a factorial (!) of any number between 3 and 9 , the program must give feedback to the user if the number is less than 3.


C program to perform addition, subtraction, multiplication and


division Of two integer numbers, respectively 2 and 6 and show the result on the screen.

Create class time create t1, t2,t3 as object of time. Write a c++ program to read t1 and t2 as hours, seconds and minutes. Assume hours, seconds, minutes as integer. Add these times t1 and t2 and store the result in time t3. Print the value of t3

Write a program that declare an array of size 25 consisting of students’ test scores in the range 0–200. The user may input any score in the array. It should then determine the number of students having scores in each of the following ranges: 0–24, 25–49, 50–74, 75–99, 100–124, 125–149, 150–174, and 175–200. Output the score ranges and the number of students. (Run your program with the following input data: 76, 89, 150, 135, 200, 76, 12, 100, 150, 28, 178, 189, 167, 200, 175, 150, 87, 99, 129, 149, 176, 200, 87, 35, 157)



toss a coin in c++ (simple toss) without using functions


Write a complete C++ program that checks if a given triangle is right-angled or not. The program shall ask


the user to enter three sides, and calculate c2 = a2 + b2, to check if the triangle is right-angled or not. Please


note that any side can be hypotenuse, i.e., you need to check by comparing square of each side with the sum


of square of other two side.


After indicating the message, the program shall ask the user if they want to know about another triangle.


The user may choose ‘Y’ (for yes), or ‘N’ (for No). In case of No, the program terminates. In case of yes, the


program asks for further input and checks the newly entered triangle. See the following example.


Enter three sides: 14 5 8


The entered triangle is not right-angled. Do you want to check another triangle (Y/N): N

LATEST TUTORIALS
APPROVED BY CLIENTS