Brianna Watt a consultant doing business as Watt Gives wants
Brianna Watt, a consultant doing business as Watt Gives, wants a program to create an invoice for consulting services. Normally, she works on a project for five days before sending an invoice. She writes down the number of hours worked on each day and needs a program that asks for these amounts, totals them, and multiplies the amount by her standard rate of $30 per hour. The invoice should include Briannas business name, the clients business name, the total number of hours worked, the rate, and the total amount billed. The information will be displayed onscreen. using pseudocode, develope an algorithm to solve this program. Include standard documentation and comments
Solution
1.) Define input variables:
2.) iterate a loop for 5 times to input no. of working hours on each particular day and get total no. of working hours in variable sum
3.) now, result = sum * rate (30 in this case)
4.) Display the result
