Computer Science, asked by vermakaushal416, 3 months ago

draw a flowchart that compute payment for a proofreader who is paid @ rupees 60/- per page proof read the proof reader read 130 pages in first week 217 pages in second week 80 pages in 3rd week and 145 pages in 4th week . pls somebody Draw the flowchart based On it pls.​

Answers

Answered by Ankitamahanty016
0

Answer:

l don't have a computer

Answered by dreamrob
0

Answer: Flowchart is attached in the form of an image.

Program in C++

#include<iostream>

using namespace std;

int main()

{

int t_page , payment;

t_page = 130 + 217 + 80 + 145;

payment = 60 * t_page;

cout<<"Total number of pages read = "<<t_page<<endl;

cout<<"Payment = "<<payment;

return 0;

}

Output:

Total number of pages read = 572

Payment = 34320

Attachments:
Similar questions