Answer to Question #212280 in C++ for fazily

Question #212280

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

**


1
Expert's answer
2021-07-02T09:41:02-0400
#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;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS