Here's the Coin class definition. Complete the missing parts of the implementation. class Coin public: Coin(double value); -Coin(); double value() const; static int coins(); private: double m value; static int num_coins; }; coin.cpp 1 #include 2 #include "coin.h" 3 using namespace std; 4 5 Coin::Coin(double value) { m value = value; } 6. 7 8 9 10 Coin::-Coin() { } 11 12 13 14 double Coin::value() const { return m value; } Demo.cpp 1 #include 2 #include 3 using namespace std; 4 5 #include "coin.h" 6 int main() { { Coin a[] = { {.1}, {.25}, {.25} }; cout « "#1 coins: " « Coin::coins() « endl; } cout « "#2 coins: " « Coin::coins() « endl; { Coin a[] = { {.1}, {.25}, {.25}, {.05}, {.50}, {.01} }; cout « "#3 coins: " « Coin::coins() « endl; } cout « "#4 coins: " « Coin::coins() « endl; } 7 8 9 10 11 12 13 14 15 16 17 18 19

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter7: Characters, Strings, And The Stringbuilder
Section: Chapter Questions
Problem 18RQ
icon
Related questions
Question

C++

Here's the Coin class definition. Complete the missing parts of the implementation.
class Coin
{
public:
Coin(double value);
-Coin();
double value() const;
static int coins();
private:
double m value;
static int num coins;
};
coin.cpp
#include <string>
#include "coin.h"
1
2
using namespace std;
4
3
Coin::Coin(double value)
6
{
m value = value;
7
}
Coin::~Coin()
{
}
10
11
12
13
14
double Coin::value() const { return m value; }
Demo.cpp
1
#include <iostream>
2
#include <vector>
using namespace std;
4
3
#include "coin.h"
6
int main()
{
{
Coin a[] = { {.1}, {.25}, {.25} };
7
10
11
cout « "#1 coins: " « Coin::coins() « endl;
}
cout « "#2 coins: " « Coin::coins() « endl;
{
Coin a[] = { {.1}, {.25}, {.25}, {.05}, {.50}, {.01} };
cout « "#3 coins: " « Coin::coins() « endl;
}
cout « "#4 coins: " << Coin::coins() « endl;
}
12
13
14
15
16
17
18
19
CodeCheck
Reset
Transcribed Image Text:Here's the Coin class definition. Complete the missing parts of the implementation. class Coin { public: Coin(double value); -Coin(); double value() const; static int coins(); private: double m value; static int num coins; }; coin.cpp #include <string> #include "coin.h" 1 2 using namespace std; 4 3 Coin::Coin(double value) 6 { m value = value; 7 } Coin::~Coin() { } 10 11 12 13 14 double Coin::value() const { return m value; } Demo.cpp 1 #include <iostream> 2 #include <vector> using namespace std; 4 3 #include "coin.h" 6 int main() { { Coin a[] = { {.1}, {.25}, {.25} }; 7 10 11 cout « "#1 coins: " « Coin::coins() « endl; } cout « "#2 coins: " « Coin::coins() « endl; { Coin a[] = { {.1}, {.25}, {.25}, {.05}, {.50}, {.01} }; cout « "#3 coins: " « Coin::coins() « endl; } cout « "#4 coins: " << Coin::coins() « endl; } 12 13 14 15 16 17 18 19 CodeCheck Reset
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Function Arguments
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
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning