(ii) Draw a flowchart that computes payment for a proof-reader who is paid@ Rs 60/- per page
proofread. The proof-reader read 134 pages in first week, 217 pages in second week, 80
pages in third week and 145 pages in fourth week.
Answers
Answered by
6
Answer:
thanks me please........#
Answered by
0
Answer: Flowchart is attached in form of an image.
Program in C++:
#include<iostream>
using namespace std;
int main()
{
int t_page , payment;
t_page = 134 + 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 = 576
Payment = 34560
Attachments:
Similar questions