In this lab, you complete a prewritten C++ program that computes the largest and smallest of three integer values. Instructions 1. Two variables named largest and smallest are declared for you. Use these variables to store the largest and smallest of the three integer values. You must decide what other variables you will need and initialize them if appropriate. 2. Your program should prompt the user to enter 3 integers. 3. Write the rest of the program using assignment statements, if statements, or if else statements as appropriate. There are comments in the code that tell you where you should write your statements. The output statements are written for you. 4. Execute the program by clicking the Run button at the bottom of the screen. Using the input of -50, 53, 78, your output should be: The largest value is 78 The smallest value is -50

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter2: Using Data
Section: Chapter Questions
Problem 4E: In this chapter, you learned that although a double and a decimal both hold floating-point numbers,...
icon
Related questions
Question
100%
// LargeSmall.cpp - This program calculates the largest and smallest of three integer values. 

#include <iostream>
using namespace std;
int main()
{
   // This is the work done in the housekeeping() function
   // Declare and initialize variables here
   int largest; // Largest of the three values
   int smallest;   // Smallest of the three values
   
   // Prompt the user to enter 3 integer values

   // Write assignment, add conditional statements here as appropriate
      
   // This is the work done in the endOfJob() function
   // Output largest and smallest number. 
   cout << "The largest value is " << largest << endl;
   cout << "The smallest value is " << smallest << endl;
   return 0; 
Understanding if else Statements in C++
B Understanding if else
Statements
Ll
Summary
14
</>
In this lab, you complete a prewritten C++ program
that computes the largest and smallest of three
integer values.
Instructions
10
11
1. Two variables named largest and smallest are
12
13
declared for you. Use these variables to store the
14
largest and smallest of the three integer values.
15
16
You must decide what other variables you will
17
need and initialize them if appropriate.
18
19
2. Your program should prompt the user to enter 3
20
integers.
21
22
3. Write the rest of the program using assignment
statements, if statements, or if else
statements as appropriate. There are comments
in the code that tell you where you should write
your statements. The output statements are
written for you.
4. Execute the program by clicking the Run button
at the bottom of the screen.
Using the input of -50, 53, 78. your output should be:
The largest value is 78
The snallest value is -50
!!
Transcribed Image Text:Understanding if else Statements in C++ B Understanding if else Statements Ll Summary 14 </> In this lab, you complete a prewritten C++ program that computes the largest and smallest of three integer values. Instructions 10 11 1. Two variables named largest and smallest are 12 13 declared for you. Use these variables to store the 14 largest and smallest of the three integer values. 15 16 You must decide what other variables you will 17 need and initialize them if appropriate. 18 19 2. Your program should prompt the user to enter 3 20 integers. 21 22 3. Write the rest of the program using assignment statements, if statements, or if else statements as appropriate. There are comments in the code that tell you where you should write your statements. The output statements are written for you. 4. Execute the program by clicking the Run button at the bottom of the screen. Using the input of -50, 53, 78. your output should be: The largest value is 78 The snallest value is -50 !!
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Concept of memory addresses in pointers
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr