Question & Answer: Purpose: . Understand the process of algorithm development 2. Use flowcharts and pseu…..

Purpose: . Understand the process of algorithm development 2. Use flowcharts and pseudocode for algorithm development 3. Practice the process of creating a new project and writing a program in Visual Studio Lab 2.1: Formulating an algorithm in pseudocode (3 points) Devise an algorithm to find the total cost of items purchased, add tax and shipping, and display the final cost. First, prompt for the number of items. Then, prompt for one item at a time, get its cost, add that to a running total. If the number of items entered is not yet the number purchased, repeat the item prompt, input, and add steps. Tax is 7% and is calculated before shipping. Shipping cost is according to the following schedule < $20.00 S20.00 up to $100.00 Free shipping 5.99 shipping 10% of the after-tax subtotal $100.00 Calculate and display the final cost based on original total, tax, and shipping. State your algorithm in pseudocode, which consists of a numbered set of actions or steps written in English statements or sentences (not written in a programming language). Underline or highlight each piece of information (variable) in your algorithm. Remember to indent steps that are associated with decision conditions. Lab 2.2: Represent an algorithm with a flowchart (4 points) Draw a flowchart to represent this task: .Program will read in an unknown number of values. Each valid value is between 0 and 999, but we dont know how many values there will be. Program will keep track of the minimum valid value read in and display it at the end. The value -1 is the signal to halt input (that is, stop reading in values and end the program). However, the value -1 DOES NOT COUNT as the minimum value. . As each value is read in, compare it to the previously recorded minimum value, and if it is less store that as the new minimum. When the quit value is entered, display the minimum value before ending. You must account for the possibility of -1 being the first value entered, in which case, the program ends (though the minimum value printed may not be correct). . Underline or highlight each piece of information (variable) that your algorithm needs to keep track o Flowchart notation: Oval/Ellipse: Terminal-start/end Parallelogram: input or output Diamond: decision Rectangle: process, task, action or operation
media%2Fb1c%2Fb1c55ab0-c8bb-4def-8a48-54Need a help with this problems. Please help me out!

Purpose: . Understand the process of algorithm development 2. Use flowcharts and pseudocode for algorithm development 3. Practice the process of creating a new project and writing a program in Visual Studio Lab 2.1: Formulating an algorithm in pseudocode (3 points) Devise an algorithm to find the total cost of items purchased, add tax and shipping, and display the final cost. First, prompt for the number of items. Then, prompt for one item at a time, get its cost, add that to a running total. If the number of items entered is not yet the number purchased, repeat the item prompt, input, and add steps. Tax is 7% and is calculated before shipping. Shipping cost is according to the following schedule

Expert Answer

 

//Name : Rahul Kundra
//Date: 14th September, 2017
//Assignment CSC 150 Lab 2

#include <iostream>
using namespace std;
int main()
{
cout<<“Hello World !!”<<endl;
return 0;

}
===================
See Output : You can change your name in comments

T

Still stressed from student homework?
Get quality assistance from academic writers!