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

Sep 28, 2020 at 7:39pm
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.
Sep 28, 2020 at 7:52pm
do you mean visual basic NET? this is a c++ forum
Sep 28, 2020 at 7:53pm
I have to code in c++ language. On the console app in Microsoft Visual .NET
Sep 28, 2020 at 7:57pm
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 Sep 28, 2020 at 7:57pm
Sep 28, 2020 at 7:59pm
Could you show me what the flowchart would look like as far as my declared variables and input process and output please?
Sep 28, 2020 at 8:01pm
how about a thank you?
Sep 28, 2020 at 8:05pm
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!!!
Sep 28, 2020 at 8:08pm
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.