Starting Out With C++: Early Objects, Fifth Edition Solutions to Review Questions. Chapter 1

Similar documents
Starting Out With C++: Early Objects, Seventh Edition Solutions to End-of-Chapter Review Questions

5.1. Chapter 5: The Increment and Decrement Operators. The Increment and Decrement Operators. Looping. ++ is the increment operator.

Chapter 5: Prefix vs. Postfix 8/19/2018. The Increment and Decrement Operators. Increment and Decrement Operators in Program 5-1

Chapter 5: Loops and Files

5.1. Chapter 5: The Increment and Decrement Operators. The Increment and Decrement Operators. The Increment and Decrement Operators

Add Subtract Multiply Divide

c++ keywords: ( all lowercase ) Note: cin and cout are NOT keywords.

*Starting Out with C++: From Control Structures through Objects, 7/E* by *Tony Gaddis* COMPUTER PROGRAMMING LECTURE 05 LOOPS IMRAN IHSAN

Reviewing all Topics this term

Computer Programming. Basic Control Flow - Loops. Adapted from C++ for Everyone and Big C++ by Cay Horstmann, John Wiley & Sons

Introduction to the C++ Programming Language

BITG 1233: Introduction to C++

REPETITION CONTROL STRUCTURE LOGO

Loops and Files. of do-while loop

Looping. Arizona State University 1

Chapter 3. More Flow of Control. Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

1- Write a single C++ statement that: A. Calculates the sum of the two integrates 11 and 12 and outputs the sum to the consol.

Chapter 2. C++ Basics. Copyright 2014 Pearson Addison-Wesley. All rights reserved.

UNIT- 3 Introduction to C++

Expressions, Input, Output and Data Type Conversions

Chapter 3 Problem Solving and the Computer

CS 151 Review #3. // More than one variable can be defined // in a statement. Multiple variables are // separated by a comma.

The American University in Cairo Department of Computer Science & Engineering CSCI &09 Dr. KHALIL Exam-I Fall 2011

Chapter 2. C++ Basics. Copyright 2014 Pearson Addison-Wesley. All rights reserved.

Chapter 2. C++ Basics

Chapter 5 : Repetition (pp )

Tutorial 13 Salary Survey Application: Introducing One- Dimensional Arrays

2.1. Chapter 2: Parts of a C++ Program. Parts of a C++ Program. Introduction to C++ Parts of a C++ Program

CSc 10200! Introduction to Computing. Lecture 4-5 Edgardo Molina Fall 2013 City College of New York

Basic memory model Using functions Writing functions. Basics Prototypes Parameters Return types Functions and memory Names and namespaces

Objectives. In this chapter, you will:

Chapter Overview. C++ Basics. Variables and Assignments. Variables and Assignments. Keywords. Identifiers. 2.1 Variables and Assignments

Week 2: Console I/O and Operators Arithmetic Operators. Integer Division. Arithmetic Operators. Gaddis: Chapter 3 (2.14,3.1-6,3.9-10,5.

Programming for Engineers Iteration

Week 2. Relational Operators. Block or compound statement. if/else. Branching & Looping. Gaddis: Chapters 4 & 5. CS 5301 Spring 2018.

Chapter 2: Basic Elements of C++ Objectives. Objectives (cont d.) A C++ Program. Introduction

More Flow Control Functions in C++ CS 16: Solving Problems with Computers I Lecture #4

Chapter Four: Loops. Slides by Evan Gallagher. C++ for Everyone by Cay Horstmann Copyright 2012 by John Wiley & Sons. All rights reserved

Chapter 4 - Notes Control Structures I (Selection)

Chapter 5. Repetition. Contents. Introduction. Three Types of Program Control. Two Types of Repetition. Three Syntax Structures for Looping in C++

C++ PROGRAMMING. For Industrial And Electrical Engineering Instructor: Ruba A. Salamh

Programming. C++ Basics

Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide 5-1

Chapter 3. More Flow of Control

Getting started with C++ (Part 2)

Chapter Overview. More Flow of Control. Flow Of Control. Using Boolean Expressions. Using Boolean Expressions. Evaluating Boolean Expressions

Objectives. Chapter 2: Basic Elements of C++ Introduction. Objectives (cont d.) A C++ Program (cont d.) A C++ Program

Chapter 2: Basic Elements of C++

! A program is a set of instructions that the. ! It must be translated. ! Variable: portion of memory that stores a value. char

Structured Programming. Flowchart Symbols. Structured Programming. Selection. Sequence. Control Structures ELEC 330 1

Increment and the While. Class 15

Chapter 5: Control Structures II (Repetition) Objectives (cont d.) Objectives. while Looping (Repetition) Structure. Why Is Repetition Needed?

7/8/10 KEY CONCEPTS. Problem COMP 10 EXPLORING COMPUTER SCIENCE. Algorithm. Lecture 2 Variables, Types, and Programs. Program PROBLEM SOLVING

CS2255 HOMEWORK #1 Fall 2012

CPE 112 Spring 2015 Exam II (100 pts) March 4, Definition Matching (8 Points)

CS 142 Style Guide Grading and Details

The C++ Language. Arizona State University 1

3.1. Chapter 3: The cin Object. Expressions and Interactivity

Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p.

C++ Programming: From Problem Analysis to Program Design, Third Edition

Chapter 3. More Flow of Control. Copyright 2008 Pearson Addison-Wesley. All rights reserved.

Why Is Repetition Needed?

Multiple Choice (Questions 1 13) 26 Points Select all correct answers (multiple correct answers are possible)

CPE Summer 2015 Exam I (150 pts) June 18, 2015

Programming Fundamentals. With C++ Variable Declaration, Evaluation and Assignment 1

WARM UP LESSONS BARE BASICS

L o o p s. for(initializing expression; control expression; step expression) { one or more statements }

Lecture 4 Tao Wang 1

Functions that Return a Value. Approximate completion time Pre-lab Reading Assignment 20 min. 92

CHAPTER 3 Expressions, Functions, Output

6 Functions. 6.1 Focus on Software Engineering: Modular Programming TOPICS. CONCEPT: A program may be broken up into manageable functions.

Laboratory 0 Week 0 Advanced Structured Programming An Introduction to Visual Studio and C++

Study recommendations for the Mid-Term Exam - Chapters 1-5

[Page 177 (continued)] a. if ( age >= 65 ); cout << "Age is greater than or equal to 65" << endl; else cout << "Age is less than 65 << endl";

CSc Introduc/on to Compu/ng. Lecture 8 Edgardo Molina Fall 2011 City College of New York

Appendix O: Solutions to Odd Numbered Review Questions

Chapter 7 Arithmetic

Page. No. 1/15 CS201 Introduction to Programmming Solved Subjective Questions From spring 2010 Final Term Papers By vuzs Team

Repetition Structures

causing a set of statements (the body) to be executed repeatedly. C++ provides three control structures to support iteration (or looping).

C++ Basics. Data Processing Course, I. Hrivnacova, IPN Orsay

Introduction to C++ Dr M.S. Colclough, research fellows, pgtas

Chapter 4: Subprograms Functions for Problem Solving. Mr. Dave Clausen La Cañada High School

Chapter 1 INTRODUCTION

Chapter 2 - Control Structures

CSCE 206: Structured Programming in C++

CSCE 206: Structured Programming in C++

Chapter 2 - I know what I want to do NOW WHAT? Student Learning Outcomes (SLOs)

Introduction to Programming using C++

Other Loop Options EXAMPLE

Welcome Back. CSCI 262 Data Structures. Hello, Let s Review. Hello, Let s Review. How to Review 8/19/ Review. Here s a simple C++ program:

Discussion 1H Notes (Week 3, April 14) TA: Brian Choi Section Webpage:

Lecture 3 Tao Wang 1

Multiple Choice (Questions 1 14) 28 Points Select all correct answers (multiple correct answers are possible)

A First Program - Greeting.cpp

Intro to Programming & C Why Program? 1.2 Computer Systems: Hardware and Software. Why Learn to Program?

Welcome Back. CSCI 262 Data Structures. Hello, Let s Review. Hello, Let s Review. How to Review 1/9/ Review. Here s a simple C++ program:

Chapter 2 Basic Elements of C++

Definition Matching (10 Points)

Computer Science II Lecture 1 Introduction and Background

Transcription:

Starting Out With C++: Early Objects, Fifth Edition Solutions to Review Questions Chapter 1 1. programmed 12. key 2. CPU 13. programmer-defined symbols 3. arithmetic logic unit (ALU) and control unit 14. Operators 4. disk drive 15. Punctuation 5. operating systems and application software 16. syntax 6. instructions 17. variable 7. programming language 18. defined (or declared) 8. Machine language 19. input, processing, output 9. High-level 20. Input 10. Low-level 21. Output 11. portability 22. hierarchy chart 23. Main memory, or RAM, is volatile, which means its contents are erased when power is removed from the computer. Secondary memory, such as a disk or CD, does not lose its contents when power is removed from the computer. 24. An operating system is a set of programs that manages the computer's hardware devices and controls their processes. Application software are programs that users use to solve specific problems or perform general operations. 25. A syntax error is the misuse of a key word, operator, punctuation, or other part of the programming language. A logical error is a mistake that tells the computer to carry out a task incorrectly or to carry out tasks in the wrong order. It causes the program to produce the wrong results. 26. Hierarchy Chart: Calculate Customer's Available Credit Get Inputs Calculate and Display Available Credit Read Max Credit Read Credit Used

27. Account Balance High Level Pseudocode Have user input starting balance Have user input total deposits Have user input total withdrawals Calculate current balance Display current balance Account Balance Detailed Pseudocode Input startbalance // with prompt Input totaldeposits // with prompt Input totalwithdrawals // with prompt currentbalance = startbalance + totaldeposits - totalwithdrawals Display currentbalance 28. Sales Tax High Level Pseudocode Have user input retail price Have user input sales tax rate Calculate tax amount Calculate sales total Display tax amount and sales total Sales Tax Detailed Pseudocode Input retailprice // with prompt Input salestaxrate // with prompt taxamount = retailprice * salestaxrate salestotal = retailprice + taxamount Display taxamount, salestotal 29. 45 30. 7 31. 28 32. 365 33. The error is that the program performs its math operation before the user has entered values for the variables width and length. 34. Some of the questions that should be asked are: What standard ceiling height should be used, or is this figure to be input? How many square feet should be subtracted out for windows and doors, or do you also want this information input since it could vary by room? Are the ceilings also to be painted or just the walls? How many square feet will 1 gallon of paint cover? How many coats of paint will you use or should this information be input?

Chapter 2 1. semicolon 5. braces { 2. iostream 6. constants, or literals 3. main 7. 9.7865E14 4. # 8. 1, 2 9. B 10. A, C 11. B (C is valid, but prints the contents of variable Hello, rather than the string Hello.) 12. B 13. A) 11 B) 14 C) 3 (An integer divide takes place.) 14. A) 9 B) 14 C) 2 15. double temp, weight, height; 16. int months = 2, days, years = 3; 17. A) d2 = d1 + 2; B) d1 = d2 * 4; C) c = K ; D) i = K ; E) i = i 1; 18. A) d1 = d2 8.5; B) d2 = d1 / 3.14; C) c = F ; D) i = i + 1; E) d2 = d2 + d1; 19. cout << "Two mandolins like creatures in the\n\n\n"; cout << "dark\n\n\n"; cout << "Creating the agony of ecstasy.\n\n\n"; cout << " - George Barker\n\n\n"; 20. cout << L\n << E\n << A\n << F\n ; This can also be written as a single string literal: cout << L\nE\nA\nF\n ;

21. Input weeks // with prompt days = weeks * 7 Display days 22. Input eggs // with prompt cartons = eggs / 12 // perform integer divide Display cartons 23. Input speed // with prompt Input time // with prompt distance = speed * time Display distance 24. Input miles // with prompt Input gallons // with prompt milespergallon = miles / gallons Display milespergallon 25. A) 0 100 B) 8 2 C) I am the incrediblecomputing machine and I will amaze you. 26. A) Be careful! This might/n be a trick question. B) 23 1 27. The C-style comments symbols are backwards. iostream should be enclosed in angle brackets. There shouldn't be a semicolon after int main(). The opening and closing braces of function main are reversed. There should be a semicolon after int a, b, c. The comment \\ Three integers should read // Three integers. There should be a semicolon at the end of each of the three assignment statements. cout begins with a capital letter. The stream insertion operator (that appears twice in the cout statement) should read << instead of <. The cout statement uses the variable C instead of c.

28. Whatever problem a pair of students decides to work with they must determine such things as which values will be input vs. which will be set internally in the program, how much precision is required on calculations, what output will be produced by the program, and how it should be displayed. Students must also determine how to handle situations that are not clear cut. In the paint problem many of these considerations are listed in the teacher answer key (Chapter 1, Question 34). In the recipe program students must determine such things as how to handle quantities, like one egg, that cannot be halved. In the driving program, knowing distance and speed are not enough. Agreement should be reached on how to handle delays due to traffic lights and traffic congestion. Should this be an input value, computed as a percent of overall driving time, or handled some other way? Chapter 3 1. A) cin >> description; B) getline(cin, description); 2. char name[35]; 3. A) cin >> setw(25) >> name; B) cin.getline(name, 25); 4. cin >> age >> pay >> section; 5. iostream and iomanip 6. char city[31]; 7. A) price = 12 * unitcost; B) cout << setw(12) << 98.7; C) cout << 12; 8. 5, 22, 20, 6, 46, 30, 0, 3, 16 9. A) a = 12 * x; B) z = 5 * x + 14 * y + 6 * k; C) y = pow(x, 4); D) g = (h + 12) / (4 * k); E) c = pow(a, 3) / (pow(b, 2) * pow(k, 4)); 10. Two implicit data type conversions occur. First, because mass is a float, a copy of the int value stored in units is promoted to a float before the multiplication operation is done. The result of mass * units will be a float. The second data type conversion occurs when the float result is promoted to a double in order to be stored in double variable weight.

11. 8 12. Either of these will work: unitseach = static_cast<double>(qty) / salesreps; unitseach = qty / static_cast<double>(salesreps); 13. const int RATE = 12; 14. x += 5; total += subtotal; dist /= rep; ppl *= period; inv -= shrinkage; num %= 2; 15. east = west = north = south = 1; 16. int sum = 0; 17. No, a named constant must be initialized at the time it is defined. It cannot be assigned a value at a later time. 18. cout << fixed << showpoint << setprecision(2); cout << setw(8) << divsales; 19. cout << fixed << showpoint << setprecision(4); cout << setw(12) << profit; 20. A) cmath B) fstream C) iomanip Note: Once students understand that inputs from the keyboard should always be preceded by prompts, the // with prompt comment can be omitted from the pseudocode. Therefore, beginning with Chapter 3, we no longer include it. 21. Input score1 Input score2 Input score3 average = (score1 + score2 + score3) / 3.0 Display average 22. discountpct =.15 Input salesamt amtsaved = salesamt * discountpct amtdue = salesamt amtsaved Display amtsaved, amtdue

23. Input maxcredit Input creditused availablecredit = maxcredit creditused Display availablecredit 24. PI = 3.14 PRICE_PIZZA12 = 12.00 PRICE_PIZZA14 = 14.00 areapizza12 = PI * (12 / 2) 2 areapizza14 = PI * (14 / 2) 2 pricepersqin12 = PRICE_PIZZA12 / areapizza12 pricepersqin14 = PRICE_PIZZA14 / areapizza14 Display pricepersqin12, pricepersqin14 25. A) Your monthly wages are 3225 // Some compilers display 3225.0000 B) 6 3 12 C) In 1492 Columbus sailed the ocean blue. 26. A) Hello George B) Hello George Washington C) Minutes: 612002.0000 Hours: 10200.0332 Days: 425.0014 Months: 13.9726 Years: 1.1644 27. A) #include <iostream> is missing. Each cin and cout statement starts with capital C. The << operator is mistakenly used with cin. The assignment statement should read: sum = number1 + number2; The last cout statement should have << after cout and should end with a semi-colon. The body of the main function should be indented within the braces. B) The cin statement should read: cin >> number1 >> number2; The assignment statement should read: quotient = static_cast<double>(number1) / number2; The last cout statement is missing a semicolon. There is no return 0;

28. A) The variables should not be declared const. The last cout statement is missing a semicolon. B) There shouldn t be a semicolon after the #include directive. The function header for main should read: int main() The combined assignment operators are improperly used. Those statements should be: number1 *= 50; number2 *= 50; There is no return 0; 29. A) There shouldn t be a semicolon after the #include directive. The function header for main should read: int main() The variable number is defined, but it is called number1 in the cin statement. The combined assignment operator is improperly used. The statement should read: half /= 2; There is a logical error. The value divided by 2 should be number, not half. The results are never output. There is no return 0; B) There shouldn t be a semicolon after the #include directive. name should be declared as a string or a char array. If declared as string, a #include <string> directive is needed. The statement cin.getline >> name; should read cin >> name; The statement cin >> go; should read cin.get(go); 30. Before the price per square inch of a pizza can be calculated, we need to know both the number of square inches it contains and its price. The price for each size pizza can be set at the beginning of the program as constants, since they are known. This can also be done with PI, which is needed for the pizza area calculation. We will use 3.14 for PI because that is precise enough for our calculations. The area of each pizza can be calculated with the formula area = PI * radius 2, where the radius of each pizza is half of its diameter. Now that the price of each pizza and its area are known, the price per square inch for each pizza can be found by dividing the price by the area. If you are unsure what to divide by what to get the answer, try thinking of a simple example using actual numbers. Suppose a pizza contained only 12 square inches and cost $12.00, then it would cost 12 / 12 or $1.00 per square inch. But if it were twice that big for the same price, it would only cost half as much per square inch. Right? Since 24/12 = $2.00 per square inch, that can t be right. But 12 / 24 = $.50 per square inch. That is clearly correct. So you can see that we need to divide the price by the square inches to get the correct result.

Chapter 4 1. relational 9.! 2. false, true 10. lower 3. false, true 11. && 4. braces 12. 5. true, false 13. block (or local) 6. default 14. integer 7. false 15. break 8. true 16. 1, 0, 0, 1 17. if (y == 0) x = 100; 18. if (y == 10) x = 0; else x = 1; 19. if (score >= 90) cout << Excellent ; else if (score >= 80) cout << Good ; else cout << Try Harder ; 20. if (minimum) hours = 10; 21. if(x < y) q = a + b; else q = x * 2; 22. switch (choice) { case 1: cout << fixed << showpoint << setprecision(2); break; case 2: case 3: cout << fixed << showpoint << setprecision(4); break; case 4: cout << fixed << showpoint << setprecision(6); break; default: cout << fixed << showpoint << setprecision(8); break;

23. T, F, T 24. T, F, T 25. if (grade >= 0 && grade <= 100) cout << "The number is valid."; 26. if (temperature >= -50 && temperature <= 150) cout << "The number is valid."; 27. if (hours < 0 hours > 80) cout << "The number is not valid."; 28. When using string objects, use the following code: if(title1 <= title2) cout << title1 << " " << title2 << endl; else cout << title2 << " " << title1 << endl; With using C-strings, you must replace the above if statement with: if (strcmp(title1, title2) <= 0) 29. if(sales < 10000) commission =.10; else if (sales <= 15000) commission =.15; else commission =.20; 30. There are several correct ways to write this. Here is one way. if(dept == 5 && price >= 100) discount =.20; else if (price >= 100) // but dept is not 5 discount =.15; else if(dept == 5) // but price < 100 discount =.10; else // dept is not 5 and price < 100 discount =.05; 31. It should read if (!(x > 20)) 32. It should use && instead of. 33. It should use instead of &&. 34. The statement will always be true. It x equals neither 1 nor 2, it is clearly true. If x equals 1 it is true because x!=2 is true. If x equals 2 it is true because x!=1 is true. The statement should use && instead of.

35. A) The first cout statement is terminated by a semicolon too early. The definition of score1, score2, and score3 should end with a semicolon. The statement: if(average = 100) should read: if(average == 100) perfectscore is used before it is declared. The if (perfectscore); statement should not be terminated with a semicolon. The conditionally-executed block in the if statement shown above should end with a closing brace. B) The conditionally-executed blocks in the if/else construct should be enclosed in braces. The statement cout << The quotient of << num1 << should end with a semi-colon, rather than with a <<. C) The trailing else statement should come at the end of the if/else construct. D) A switch case construct cannot be used to test relational expressions. An if/else if statement should be used instead. 36. A) An if/else if is more appropriate than a switch statement when all test expressions do not involve the same variable or when test expressions need to test more than one condition, work with non-integer values, or use relational operators that test for something other than equality. B) A switch statement is more appropriate than an if/else if statement when all tests are comparing a variable for equality with just 1 or a small set of integer values. It is a particularly useful construct to use when you want to utilize the fall through feature to carry out more than 1 set of actions when a particular condition is true. C) A set of nested if/else statements is more appropriate than either of the other two constructs when the test conditions that determine the actions to be carried out do not fall into a neat set of mutually exclusive cases. For example, if one condition is true, then which set of actions you wish to take may depend on the outcome of a second test.

Chapter 5 1. increment 11. running total 2. decrement 12. accumulator 3. prefix 13. sentinel 4. postfix 14. for 5. body 15. do-while 6. iteration 16. while and for 7. pretest 17. initialization, test, update 8. posttest loop 18. nested 9. infinite (or endless) 19. break 10. counter 20. continue 21. int num; cin >> num; num *=2; while (num < 50) { cout << num << endl; num *=2; 22. do { float num1, num2; char again; cout << "Enter two numbers: "; cin >> num1 >> num2; cout << "Their sum is " << (num1 + num2) << endl; cout << "Do you wish to do this again? (Y/N) "; cin >> again; while (again == 'Y' again == 'y'); 23. for (int x = 0; x <= 1000; x += 10) cout << x; 24. float total, num; for (int count = 0; count < 10; count++) { cout << "Enter a number: "; cin >> num; total += num;

25. for (int row = 1; row <= 3; row++) { for (int star = 1; star <= 5; star++) cout << * ; cout << endl; 26. for (int row = 0; row < 10; row++) { for (int col = 0; col < 15; col++) cout << # ; cout << endl; 27. char doagain; int sum = 0; cout << "This code will increment sum 1 or more times.\n"; do { sum++; cout << "Sum has been incremented. << Increment it again(y/n)? "; cin >> doagain; while (doagain == 'y' doagain == 'Y'); cout << "Sum was incremented " << sum << " times.\n"; 28. int number; cout << "Enter an even number: "; cin >> number; while (number % 2!= 0) { cout << "Number must be even. Reenter number: "; cin >> number; 29. for (int count = 0; count < 50; count++) cout << "count is " << count << endl; 30. int x = 50; while (x > 0) { cout << x << seconds to go.\n ; x--; 31. Nothing will print. The erroneous semicolon after the while condition causes the while loop to end there. Because x will continue to remain 1, x<10 will remain true and the infinite loop can never be exited. 32. 10. Because there are no braces only the x++ statement is in the body of the loop.

33. 2 4 6 8 10 34. $9999 $9999 $9999 35. A) The statement result = ++(num1 + num2); is invalid. B) The while loop tests the variable again before any values are stored in it. The while loop is missing its opening and closing braces. 36. A) The while statement should not end with a semicolon. It could also be argued that BigNum should be declared a long int. B) The variable total is not initialized to 0. 37. A) The expression tested by the do-while loop should be choice == 1 instead of choice = 1. B) The variable total is not initialized to 0. The while loop does not change the value of count, so it iterates an infinite number of times.

Chapter 6 1. header 13. local 2. void 14. Static 3. showvalue(5); 15. return 4. definition, prototype 16. Default 5. arguments 17. last 6. parameters 18. literal or constant 7. value 19. reference 8. prototype 20. & 9. local 21. reference 10. Global 22. exit 11. Global 23. parameter lists 12. 0 24. Each function can handle one small, manageable task. This makes it easier to design, code, test, and debug. 25. Arguments appear in the parentheses of a function call. They are the actual values passed to a function. Parameters appear in the parentheses of a function heading. They are the variables that receive the arguments. 26. yes 27. Function overloading means including more than one function in the same program that has the same name. C++ allows this providing the overloaded functions can be distinguished by having different parameter lists. 28. Pass it by value. 29. You want the function to change the value of a variable that is defined in the calling function. 30. with a return statement. 31. Yes, but within that function only the local variable can be seen and accessed. 32. Use a static variable when you need a local variable to retain its value between function calls. 33. double half(double value) { return value / 2; 34. result = cube(4); 35. void timesten(int num) { cout << num * 10; 36. display(age, income, initial);

37. void getnumber(int &number) { cout << Enter an integer between 1 and 100): ; cin >> number; while (number < 1 number > 100) { cout << This value is out of the allowed range.\n << Enter an integer between 1 and 100): ; 38. int biggest(int num1, int num2, int num3) { if (num1 >= num2 && num1 >= num3) return num1; if (num2 >= num3) return num2; return num3; 39. A) The data type of value2 and value3 must be declared. The function is declared void but returns a value. B) The assignment statement should read: average = (value1 + value2 + value3) / 3.0; The function is declared as a double but returns no value. C) width should have a default argument value. The function is declared void but returns a value. D) The parameter should be declared as: int &value The cin statement should read: cin >> value; E) The functions must have different parameter lists.