TAILIEUCHUNG - 3D Game Programming All in One- P6

3D Game Programming All in One- P6: During the past several years while working on the Tubettiland “Online Campaign” software and more recently while working on the Tubettiworld game, I figure I’ve received more than a hundred queries from people of all ages about how to get started making games. There were queries from 40-year-olds and 13-year-olds and every age in between. Most e-mails were from guys I would estimate to be in their late teens or early 20s. | Programming Concepts 67 In the Arrays section earlier in this chapter we calculated a total price and total count of several types of fruit with the FruitLoopy program. Here is that program modified somewhat okay modified a lot to use functions. Take note of how small the main function has become now that so much code is contained within the three new functions. This program adds up the costs and quantities of selected fruit types and outputs the results to the display. This module is a variation of the module designed to demonstrate how to use functions. function InitializeFruit numFruitTypes -------------------------------------------------------------------------- Set the starting values for our fruit arrays and the type indices RETURNS number of different types of fruit -------------------------------------------------------------------------- numTypes 5 so we know how many types are in our arrays bananaIdx 0 initialize the values of our index variables appleIdx 1 orangeIdx 2 mangoIdx 3 pearIdx 4 names bananaIdx bananas initialize the fruit name values names appleIdx apples names orangeIdx oranges names mangoIdx mangos names pearIdx pears cost bananaIdx initialize the price values cost appleIdx cost orangeIdx cost mangoIdx cost pearIdx quantity bananaIdx 1 initialize the quantity values Team LRN 68 Chapter 2 Introduction to Programming quantity appleIdx 3 quantity orangeIdx 4 quantity mangoIdx 1 quantity pearIdx 2 return numTypes function addEmUp numFruitTypes --------------------------------------------------------------------------- Add all prices of different fruit types to get a full total cost PARAMETERS numTypes -the number of different fruit that are tracked RETURNS total cost of all fruit --------------------------------------------------------------------------- total 0 for index 0 index numFruitTypes index total total quantity index cost index return total .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.