Is a all numbers x for which 4 2 #include "interval.h"
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
C++

Transcribed Image Text:An interval is a range of numbers between two bounds. For example, Interval(4, 6) represents
all numbers x for which 4 <x<6.
Implement a + operator that takes two intervals and yields the smallest interval containing both of
them. For example, Interval(4, 6) + Interval(5, 8) is Interval(4, 8),and
Interval (4, 6) + Interval(7, 8) is also Interval(4, 8).
interval.cpp
1
#include <iostream>
2
#include "interval.h"
3.
using namespace std;
4
5
// Add your operator here
Tester.cpp
1
#include <iostream>
2
#include "interval.h"
3
4
using namespace std;
6
int main()
{
Interval result = Interval (3, 4) + Interval(7, 8);
result.print(cout);
cout « "Expected: (3, 8)" « endl;
result = Interval(7, 9) + Interval (4, 8);
result.print(cout);
cout « "Expected: (4, 9)" << endl;
result = Interval(4, 9) + Interval (7, 8);
result.print(cout);
cout « "Expected: (4, 9)" <« endl;
result = Interval(4, 5) + Interval (5, 8);
result.print(cout);
cout « "Expected: (4, 8)" <« endl;
return 0;
}
7
8
10
11
12
13
14
15
16
17
18
19
20
21
interval.h
1
#ifndef INTERVAL H
#define INTERVAL H
#include <iostream>
3
4
class Interval
{
public:
Interval (int lower_bound, int upper_bound);
void print(std::ostream& out) const;
Interval operator+(const Interval& other) const;
private:
int low;
int high;
};
7
8
9
10
11
12
13
14
15
16
#endif
CodeCheck
Reset
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps with 1 images

Knowledge Booster
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.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education