Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

CS10-8L: Computer Programming Laboratory

Machine Problem #4: Variables, Input and Output

Name: Marcus Jurelle P. Del Rosario Score:

Section: A34 Date: 09/07/


2022

OBJECTIVES
● To familiarize the students with the MATLAB interface.
● To enable the students to use some basic operations.

Instructions:
1. Save your file as Surname_Firstname_MP4. Ex. Santos_Jared_MP4

2. You will submit the following to BB.

a. PDF file of Machine Problem 4 provided with the screenshot of your answers.
b. MATLAB script with .m extension.

3. Your program must have comments for each section.


Header Comments:
%{
Short Description of the Program
Written by: Cheryl Mari Isip
Date: March 16, 2022
Time: 2:20pm
Program: BSIE
Course: CS10-8L
Section: B6
School: Mapua University
%}
4. Your output should be displayed rounded to two decimal places.

5. You’re not allowed to use conditional or repetition statements else you will be given a
grade of Zero (0).

6. Follow the output design as shown below.

Prepared by: Engr. Cheryl Mari Isip, Mapua University


CS10-8L: Computer Programming Laboratory
Machine Problem #4: Variables, Input and Output

MACHINE PROBLEM

1. Write a program to create a customer’s bill for a company. The company sells only five different
products: TV, Laptop, Speaker, Computer Mouse and Keyboard. The unit prices are 20,000.00
pesos, 40,000 pesos, 6,000 pesos, 1000 pesos and 3000 pesos respectively. The program must read
the quantity of each piece of equipment purchased from the keyboard. It then calculates the
cost of each item, the subtotal, and the total cost after an 8.25% sales tax.

The input data consist of a set of integers representing the quantities of each item sold. These
integers must be input into the program in a user - friendly way; that is, the program must prompt
the user for each quantity as shown below. The numbers in boldface show the user’s answers.

Sample Output:

How Many TVs Were Sold? 3


How Many Laptops Were Sold? 5
How Many Speakers Were Sold? 1
How Many Computer Mouse Were Sold? 2
How Many Keyboards Were Sold? 4

____________________________________________________________________

QTY DESCRIPTION UNIT PRICE TOTAL PRICE


____ _______________ _____________ ______________

XX TV 20,000.00 XXXXXX.XX
XX LAPTOP 40,000.00 XXXXXX.XX
XX SPEAKER 6,000.00 XXXXXX.XX
XX MOUSE 1,000.00 XXXXXX.XX
XX KEYBOARD 3,000.00 XXXXXX.XX
__________
SUBTOTAL XXXXXX.XX
TAX XXXX.XX
TOTAL XXXXXX.XX

Prepared by: Engr. Cheryl Mari Isip, Mapua University


CS10-8L: Computer Programming Laboratory
Machine Problem #4: Variables, Input and Output

In the editor window, take a screenshot and paste your output:

Prepared by: Engr. Cheryl Mari Isip, Mapua University


CS10-8L: Computer Programming Laboratory
Machine Problem #4: Variables, Input and Output

In the command window, take a screenshot and paste your output:

Prepared by: Engr. Cheryl Mari Isip, Mapua University


CS10-8L: Computer Programming Laboratory
Machine Problem #4: Variables, Input and Output

Prepared by: Engr. Cheryl Mari Isip, Mapua University

You might also like