9.13 LAB: Overload operator<< for ostream Extend the functionality of cout by implementing a friend function in Number.cpp that overloads the insertion operator. The overloaded insertion operator returns an output stream containing a string representation of a Number object. The string should be in the format "The value is yourNum", where yourNum is the value of the integer instance field of the Number class. Hint: the declaration of the friend function is provided in Number.h. Ex: if the value of yourNum is 723, then the output is: The value is 723 324984.1778288.qx3zgy7 LAB 9.13.1: LAB: Overload operator<< for ostream ACTIVITY Current file: Number.cpp - Load default template... 1 #include "Number.h" 2 #include 3 using namespace std; 4 5 Number::Number (int number) { num = number; 6. 7 } 8 9 void Number::SetNum (int number) { num = number; 10 11 } 12 13 int Number::GetNum (){ 14 return num; 15 } 16 17 /* Type your code here */

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Hi I would like to know how to solve this in C++ please.

9.13 LAB: Overload operator<< for ostream
Extend the functionality of cout by implementing a friend function in Number.cpp that overloads the insertion operator. The overloaded
insertion operator returns an output stream containing a string representation of a Number object. The string should be in the format "The
value is yourNum", where yourNum is the value of the integer instance field of the Number class.
Hint: the declaration of the friend function is provided in Number.h.
Ex: if the value of yourNum is 723, then the output is:
The value is 723
324984.1778288.qx3zqy7
LAB
9.13.1: LAB: Overload operator<< for ostream
АCTIVITY
Current file: Number.cpp
Load default template...
1 #include "Number.h"
2 #include <iostream>
3 using namespace std;
4
5 Number::Number(int number) {
num = number;
7 }
8
9 void Number::SetNum (int number) {
number;
10
num =
11 }
12
13 int Number::GetNum (O {
14
return num;
15 }
16
17 /* Туре your code here */
Transcribed Image Text:9.13 LAB: Overload operator<< for ostream Extend the functionality of cout by implementing a friend function in Number.cpp that overloads the insertion operator. The overloaded insertion operator returns an output stream containing a string representation of a Number object. The string should be in the format "The value is yourNum", where yourNum is the value of the integer instance field of the Number class. Hint: the declaration of the friend function is provided in Number.h. Ex: if the value of yourNum is 723, then the output is: The value is 723 324984.1778288.qx3zqy7 LAB 9.13.1: LAB: Overload operator<< for ostream АCTIVITY Current file: Number.cpp Load default template... 1 #include "Number.h" 2 #include <iostream> 3 using namespace std; 4 5 Number::Number(int number) { num = number; 7 } 8 9 void Number::SetNum (int number) { number; 10 num = 11 } 12 13 int Number::GetNum (O { 14 return num; 15 } 16 17 /* Туре your code here */
9.13 LAB: Overload operator<< for ostream
Extend the functionality of cout by implementing a friend function in Number.cpp that overloads the insertion operator. The overloaded
insertion operator returns an output stream containing a string representation of a Number object. The string should be in the format "The
value is yourNum", where yourNum is the value of the integer instance field of the Number class.
Hint: the declaration of the friend function is provided in Number.h.
Ex: if the value of yourNum is 723, then the output is:
The value is 723
324984.1778288.qx3zqy7
LAB
9.13.1: LAB: Overload operator<< for ostream
ACTIVITY
Current file: Number.h
Load default template...
1 #i
def NUr
ERH
2 #define NUMBERH
3
4 #include <iostream>
5 using namespace std;
7 class Number {
public:
Number(int);
void SetNum ( int);
int GetNum();
//Declared as a friend function to give operator<< private member access
friend ostream& operator<<(ostream &out, const Number& n);
8
9.
10
11
12
13
14
private:
int num;
15
16
17 };
Transcribed Image Text:9.13 LAB: Overload operator<< for ostream Extend the functionality of cout by implementing a friend function in Number.cpp that overloads the insertion operator. The overloaded insertion operator returns an output stream containing a string representation of a Number object. The string should be in the format "The value is yourNum", where yourNum is the value of the integer instance field of the Number class. Hint: the declaration of the friend function is provided in Number.h. Ex: if the value of yourNum is 723, then the output is: The value is 723 324984.1778288.qx3zqy7 LAB 9.13.1: LAB: Overload operator<< for ostream ACTIVITY Current file: Number.h Load default template... 1 #i def NUr ERH 2 #define NUMBERH 3 4 #include <iostream> 5 using namespace std; 7 class Number { public: Number(int); void SetNum ( int); int GetNum(); //Declared as a friend function to give operator<< private member access friend ostream& operator<<(ostream &out, const Number& n); 8 9. 10 11 12 13 14 private: int num; 15 16 17 };
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY