The pseudocode of the program is simply a prototype of the actual program
<h3>How to write the
pseudocode?</h3>
The pseudocode that does the requirements in the question is as follows:
- Start
- Get Input for amount of purchase
- Compute the state tax: sales tax = sales tax percentage * amount
- Compute the provisional sales tax: provisional sales tax = provisional sales tax percentage * amount
- Print the taxes
Read more about pseudocode at:
brainly.com/question/24735155
#SPJ1
Answer:
The answer to this question is given below in the explanation section.
Explanation:
This question is about calculating the profit from the annual projected sales of a company.
You can calculate the profit by using the following formula:
profit = annual projected sales x annual profit.
So, the code (solution) is given below, however, it is noted that this program is written in c++ language.
#include <iostream>
using namespace std;
int main()
{
long double annualProfitPercentage=0.23;// annual profit 23%.
long double projectedSales,profit;/* declare variable to store the annual projected sales and profit */
cout<<"*********Sales Prediction*********\n"; //output heading
cout<<"\nEnter the project amount of total sales: ";// take input from user
cin>>projectedSales;// store input into variable projectedSales
profit = projectedSales * annualProfitPercentage;//calculate profit
cout<<"Profit is: "<<profit;//print result
return 0;
}
Answer:
Free transit is a poor substitute for making drivers pay actual costs of driving. Free anything makes people use it too much.
Explanation:
the human eye has 3 cones (red, green and blue)
Explanation:
if you mix each color very precisely on a screen, you can simulate different colors that trick the eyes into thinking they are seeing something else.