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