Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

whenever i try to run my code it says that specified file is not found. please help. PROGRAMMING: USER-DEFINED DATA TyPES ASSIGNMENT INSTRUCTIONS OVERVIEW You

whenever i try to run my code it says that specified file is not found. please help.
image text in transcribed
image text in transcribed
image text in transcribed
PROGRAMMING: USER-DEFINED DATA TyPES ASSIGNMENT INSTRUCTIONS OVERVIEW You will create user-defined data types and use them to collect order information from a customer. Using a control loop, get order information from the customer and then display the total order when the customer is finished. INSTRUCTIONS Imagine you are working for a lumber company, and your employer would like a program that calculates the cost of lumber for a customer order. The company sells pine, fir, cedar, maple, and oak lumber. The lumber is priced by board feet. One board foot equals one square foot that is one inch thick. The price per board foot is given in the following table: Pine 0.89 Fir 1.09 Cedar 2.26 Maple 4.50 Oak 3.10 The lumber is sold in different dimensions (specified in inches of width and height, and feet of length) that need to be converted to board feet. For example, a 248 piece is 2 inches wide, 4 inches high, and 8 feet long, and is equivalent to 5.333 board feet (248=64, which when divided by 12=5.333 board feet). 1. Create a blank c+t file. 2. Give the customer instructions and then ask the user (customer) to identify the items they wish to purchase by inputting the type of wood, the length, width, \& heights of the board, and the number of boards they desire. 3. Allow the user to continue adding items to their order until they wish to get a total. Once they ask for a total - the program will display a receipt of all items to purchase and the total An entry from the user will be in the form of a letter and four integer numbers. The integers are the number of pieces, width, height, and length. The letter will be one of P, F, C, M, O (corresponding to the five kinds of wood) or T, meaning total. When the letter is T, there are no integers following it on the line. The program should print out the price for each entry and print the total after T is entered. NOTE: You need to develop the program using functional decomposition and using proper style and documentation in your code. Your program must also make appropriate use of value- returning functions in solving this problem. Finally, make sure that the user prompts are clear and that the output is labeled appropriately. 1/-- brief statement as to the file's purpose //CSIS 111 - ADD YOUR SECTION NUMBER // //Include statements \#include > \#include using namespace std; //Global declarations: Constants and type definitions only no variables //Function prototypes int main0 \{ //In cout statement below SUBSTITUTE your name and lab number cout "Your name - Lab Number" endl endl; I/Variable declarations //Program logic //Closing program statements system("pause"); return 0 ; /Function definitions

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Handbook Of Relational Database Design

Authors: Candace C. Fleming, Barbara Von Halle

1st Edition

0201114348, 978-0201114348

More Books

Students also viewed these Databases questions

Question

Write a Python program to check an input number is prime or not.

Answered: 1 week ago

Question

Write a program to check an input year is leap or not.

Answered: 1 week ago

Question

Write short notes on departmentation.

Answered: 1 week ago

Question

Question What are the advantages of a written bonus plan?

Answered: 1 week ago