Ict Programming Template Nicolai

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 11

School Name

School Address

Documentary Requirement Presented


to the Senior High School Department for Work Immersion

________________________________

In Partial Fulfillment of the Requirements


for

Information Communication and Technology (ICT) Strand

PROGRAMMING

_________________________________

by

Nicolai Bahingawan

Submitted To

Jeffrey Leonen

Work Immersion Adviser

March 2021
ACKNOWLEDGEMENT

“The acknowledgement is a one-page expression of appreciation for the assistance

given to the student in the course of her / his work immersion. The name of the author

should be printed in capital on the right side of the page four spaces after the last line

of the last paragraph.”

ii
TABLE OF CONTENTS

TITLE PAGE i

ACKNOWLEDGMENT ii

TABLE OF CONTENTS iii

I. COMPANY NAME AND BRIEF DESCRIPTION

II. SYSTEM BRIEF DESCRIPTION

III. SCREENSHOTS OF THE SYSTEM

IV. PROGRAM CODE

V. RESUME

iii
I. COMPANY NAME AND BRIEF DESCRIPTION

Vizcos

It's the same thought that inspired Jackie Vizcocho Dizon to come up with a
strawberry shortcake recipe in 2004 when her parents decided to get a space on
Session Road. Fresh out of culinary school, she delayed her dreams of working
and learning abroad in exchange for an opportunity to carve out her own niche in
a space she can call her own. That year, Vizco's along Session Road was born.

1
II. SYSTEM BRIEF DESCRIPTION

This program makes you choose what you order then type the number of your order. It
will print the amount to pay or if you have other order. It will add all the total number
of your order.

2
III. SCREENSHOTS OF THE SYSTEM

3
4
IV. PROGRAM CODE

package nicolai;

import java.util.Scanner;

public class Nicolai {

public static double runningTotal;

private static double itemPrice;

static boolean ordering = true;

static Scanner input = new Scanner(System.in);

public static void menu(){

System.out.println("Welcome! Please choose your order! \n1. Burger (P50.00) \n2. Fries

(P35.00)\n3. Coke (P20.00) \n4. Done"); } public static double itemPrice(int foodItem) { if (foodItem

== 1) { System.out.println("You've ordered a Burger"); itemPrice = 50.00; } if (foodItem == 2)

{ System.out.println("You've ordered Fries"); itemPrice = 35.00; } if (foodItem == 3)

{ System.out.println("You've ordered a Coke"); itemPrice = 20.00; } quantity(); return itemPrice; }

public static double quantity() { System.out.println("Enter quantity"); double quantity =

input.nextDouble(); subTotal(quantity, itemPrice); return quantity; } public static double

subTotal(double quantity, double itemPrice) { double subTotal = quantity*itemPrice;

System.out.println("SubTotal: "+ subTotal); runningTotal += subTotal; return subTotal; } public

static void done(){ ordering = false; System.out.println("The Total Amount To Pay Is: " +

runningTotal + " Pesos"); System.out.println("Enjoy your meal!"); System.out.println("Please Come

Again!"); } public static void main(String[] args) { int menuOption; int foodItem = 0; input = new

Scanner(System.in); do{ double runningTotal=0; menu(); menuOption = input.nextInt();

switch(menuOption){ case 1 -> { foodItem = 1; itemPrice(foodItem); } case 2 -> { foodItem = 2;

itemPrice(foodItem); } case 3 -> { foodItem = 3; itemPrice(foodItem); } case 4 -> done(); default ->

5
{ System.out.println("Invalid option. "); System.out.println("Please choose your order according to

the number. "); } } } while(ordering); { } } }

6
V. RESUME

Nicolai Bahingawan

Personal Information:

Age: 17

Status: Single

Birthdate: April 23, 2003

Birthplace: Bugias

Citizenship: Filipino

Height: 5’3

Blood Type: B

Language Spoken: English , Filipino , Ilocano , kankana-ey

Education:

07/2020 – 03/2021 AMA Computer College

Skills:

Cooking

Computer Design(AutoCAD)

7
Work Experience:

04/2019 – 03/2020 Vizcous - Assistant Cook

Self Evaluation:

Willing to train

Hard Working

Can work in shifting schedules

Contact Info:

Wongnic23@gmail.com

You might also like