[solved] – Question 95296
A vacation rental property management company must file a monthly sales tax report listing the total sales for the month and the amount of state and city sales tax collected. The state sales tax rate is 6 percent and the local city sales tax rate is 9 percent. Write a program (using functions) that asks the user to enter the total sales for the month. From this figure, the application should calculate and display the following:
The amount of local city sales tax
The amount of state sales tax
The total sales tax (city plus state)
Please help
Expert Answer
[solved] – Question 95378
Write a cash register program that calculates change for a restaurant of your choice. Your program should include:
Ask the user to input the cost of 3 items purchased by the customer*
Tell the user the total cost of the items purchased
Ask the user to input the amount paid by the customer
Calculate and print the amount of change to be given to the customer
Expert Answer
[solved] – Question 95384
Let’s play Silly Sentences!
Enter a name: Grace
Enter an adjective: stinky
Enter an adjective: blue
Enter an adverb: quietly
Enter a food: soup
Enter another food: bananas
Enter a noun: button
Enter a place: Paris
Enter a verb: jump
Grace was planning a dream vacation to Paris.
Grace was especially looking forward to trying the local
cuisine, including stinky soup and bananas.
Grace will have to practice the language quietly to
make it easier to jump with people.
Grace has a long list of sights to see, including the
button museum and the blue park.
Expert Answer
[solved] – Question 95421
Draw a DFA for the set of all non-empty strings (here, ∑ = {0,1})
Expert Answer
[solved] – Question 95423
Let’s play Silly Sentences!
Enter a name: Grace
Enter an adjective: stinky
Enter an adjective: blue
Enter an adverb: quietly
Enter a food: soup
Enter another food: bananas
Enter a noun: button
Enter a place: Paris
Enter a verb: jump
Expert Answer
[solved] – Question 95447
Assignment 2: Room Area
Room shape
For this lab you will find the area of an irregularly shaped room with the shape as shown above.
Ask the user to enter the values for sides A, B, C, D, and E and print out the total room area.
Remember the formula for finding the area of a rectangle is length * width and the area of a right triangle is 0.5 * the base * height.
Please note the final area should be in decimal format.
Sample run:
Enter side A: 11
Enter side B: 2
Enter side C: 4
Enter side D: 7
Enter side E: 1
Output:
Room Area: 53.5
Expert Answer
[solved] – Question 95584
Create a C++ program to choose a name for a new born baby.
Five names will be given as choice to the program. Among the names, select a good
name.
The name is categorized as good if,
i) The name contains less than three vowels and
ii) The name has no characters appearing twice.
Input:
Raja
King
Queen
Minister
Soldier
Output:
Raja is good name
King is good name
Queen is bad name
Minister is bad name
Soldier is bad name
Expert Answer
[solved] – Question 95593
any one avilabe who previously work on eclipse and be able to made listner and visitor
Expert Answer
[solved] – Question 95659
Write a program to calculate students average test scores and their grades. You may assume the following data: Johnson 85 83 77 91 76 Aniston 80 90 95 93 48 Cooper 78 81 11 90 73 Gupta 92 83 30 69 87 Blair 23 45 96 38 59 Clark 60 85 45 39 67 Kennedy 77 31 52 74 83 Bronson 93 94 89 77 97 Sunny 79 85 28 93 82 Smith 85 72 49 75 63 Use three arrays: a one-dimensional array to store the student names, a (parallel) twodimensional array to store the test score, and a parallel one-dimensional array to store grades. Your program must contain a function to read and store data, function to calculate largest , function to calculate average grade and test scores and a function to output the results and function for the best student.
Expert Answer
[solved] – Question 95678
Write the code to input a number and print the square root. Use the absolute value function to make sure that if the user enters a negative number, the program does not crash.
Expert Answer

