C++ PROGRAMMING
The "TRC Institute" records and monitors performance of three (3) machines over a period of four (4) days (l to 4) as shown in the Table 1, 2 and 3 respectively. The production ranges between 15.5 and 75.5
Table 1- Machine "A" Production
1 2 3 4
Array index 0 1 2 3
Production 15.5 25.5 27.5 60.5
Table 2- Machine "B" Production
1 2 3 4
Array index 0 1 2 3
Production 50 45.5 25.5 18
Table 3- Machine "C" Production
1 2 3 4
Array index 1 2 3
Production 35.5 65 71 74.5
Write a function using C++ statements called PrintBar() which takes a float (as production) as a parameter. The function prints asterisks on the screen based on the production.
Note: I asterisk = 10 production units (round up the production units)
Example.
Sample Input
Machine A Day I Production 15.5
Sample Output
**
#include <iostream>
#include <cmath>
using namespace std;
void PrintBar(float production){
float p=production/10;
int a=floor(p);
for(int i=0;i<=a;i++){
cout<<"*";
}
cout<<endl;
}
int main()
{
PrintBar(15.5);
return 0;
}
Comments
Leave a comment