Due Tonight and very new to this Need Help!!!!

Write your question here.
Create a flowchart and Pseudocode using Visio and write a program using Visual Studio. NET. Prompt the user for number of cars they sold. Calculate the commission amount as 500.00 dollars commission per car sold. Output the commission amount. Please help me with the code.
do you mean visual basic NET? this is a c++ forum
I have to code in c++ language. On the console app in Microsoft Visual .NET
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

using namespace std;

int main()
{
   cout << "How many cars?" << endl; 
   int numCars = 0;
   cin >> numCars;
   
   int commissionPerCar = 500;
   
   cout << "Commission is $" << numCars * commissionPerCar;
   
   return 0;
}
Last edited on
Could you show me what the flowchart would look like as far as my declared variables and input process and output please?
how about a thank you?
Thank you very much!! Dont think I'm not very appreciative because I am. I have been struggling with this since yesterday. We also have to include a flowchart with psuedocode is why i asked. So i make sure i am declaring the right variables and input process and output. Again thank you so much!!!
Another reason I ask is because we have to include and separate the input process and output and declare variables in our program code. Like // Declare variables and then under it code the variables and have to do that with each one
Topic archived. No new replies allowed.