Computer Science, asked by Jitesh9819, 7 months ago

Write a program in Q Basic format to print the total amount paid to the shopkeeper for purchasing the following items are made of exercise book is equal to 10 number of Brown paper roll equal to 4

Answers

Answered by neymarbrasilbr10
1

Answer:

10 REM To find the total amount paid to shopkeeper

20 INPUT " Cost of 1 Exercise book : ", E

30 INPUT " Cost of 1 Brown Paper: ", B

40 PRINT " Cost of 10 Exercise books is ", E * 10

50 PRINT " Cost of 4 Brown Paper is ", B*4

60 END

Explanation:

Similar questions