Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 18.118.137.96
Web Server : Apache
System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.2.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0705) :  /home/grpatillo/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/grpatillo/salesbar.cpp
#include <iostream>

using namespace std;

void print_stars(int sale);	// prototype

int main()
{
	int a, b, c, d, e; 	
	
	cout << "Enter today's sales for store 1: ";
	cin >> a;
	cout << "Enter today's sales for store 2: ";
	cin >> b;
	cout << "Enter today's sales for store 3: ";
	cin >> c;
	cout << "Enter today's sales for store 4: ";
	cin >> d;
	cout << "Enter today's sales for store 5: ";
	cin >> e;
	
	cout << "SALES BAR CHART" << endl;
	cout << "(Each * = $100)" << endl;
	cout << "Store 1: ";
	for(int i=0; i<(a/100); i++) 
		cout << "*";
	cout << endl;
	cout << "Store 2: ";
	for(int i=0; i<(b/100); i++)
		cout << "*";
	cout << endl;
	cout << "Store 3: ";
        print_stars(c);			// call
        
        cout << "\n\n\n";
        
	return 0;

}

//-----------------------------------------------------
void print_stars(int sale)		// defination
{
	for(int i=0; i<sale/100; i++)
		cout << "*";
	cout << "\n";
}

Stv3n404 - 2023