Need assistance

So in my last lab i created a number class that derived from string and was used as a base class for both Integer and Double. Right now im javing issues with my number class, so I need to move my isNan functions to my number class and create a virtual function that will work throughout both Integer and Double. Right now I've attempted to create the virtual function but it created alot of issues in both Integer and Double.
Last edited on
Double.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
#include <cstdlib>
#include <iostream>
#include <sstream>
#include <string>
#include"Integer.h"
#include "Number.h"
#ifndef DOUBLE
#define DOUBLE
using namespace std;

class Double :public Number
{
private:
	double dub;
	bool nan;
	void isNan(string s);
	bool recursiveNaN(std::string strs, int i, int j);

public:
	Double() : Number() {};
	Double(const Double& d) : Number(d.data()) {};
	Double(const Integer& i) : Number(i.data()) {};
	Double();
	Double(const Double& d);
	Double(double d);
	Double(const Integer& i);
	Double(const string str);
	double toDouble() const;
	void equals(string s);
	void equals(double d);
	Double add(const Double& d);
	Double sub(const Double& d);
	Double mul(const Double& d);
	Double div(const Double& d);

	Double add(double& d);
	Double sub(double& d);
	Double mul(double& d);
	Double div(double& d);

	Double operator + (const Double& d);
	Double operator - (const Double& d);
	Double operator * (const Double& d);
	Double operator / (const Double& d);
	Double& operator = (const Double& d);
	Double& operator = (double d);
	Double& operator = (string s);

	bool operator == (const Double& d);
	bool operator == (double d);
	string toString();


};
#endif

Integer.h
#include <cstdlib>
#include <iostream>
#include <sstream>
#include <string>
#include "Number.h"

#ifndef INTEGER
#define INTEGER
using namespace std;

class Integer :public Number
{
private:

	int ints;
	bool nan;
	void isNan(string s);
	bool recursiveNaN(std::string s, int i, int j);
public:
	Integer() :Number() {};
	Integer(const Integer& i) : Number(i.data()) {};
	Integer(const Double& d) : Number(d.data()) {};
	Integer();
	Integer(const Integer& i);
	Integer(int i);
	Integer(const string str);
	int toInt() const;
	void equals(int i);
	void equals(string s);

	Integer add(const Integer& i);
	Integer sub(const Integer& i);
	Integer mul(const Integer& i);
	Integer div(const Integer& i);
	Integer add(int& i);
	Integer sub(int& i);
	Integer mul(int& i);
	Integer div(int& i);

	Integer operator + (const Integer& i);
	Integer operator - (const Integer& i);
	Integer operator * (const Integer& i);
	Integer operator / (const Integer& i);
	Integer& operator = (const Integer& i);
	Integer& operator = (int i);
	Integer& operator = (string s);
	bool operator == (const Integer& i);
	bool operator == (int i);
	string toString();
};
#endif

Number.h
#ifndef NUMBER
#define NUMBER
#include <string>
#include"Double.h"
#include"Number.h"
using std::string;

class Number : public string

{

public:
	Number() { this->assign("0"); }
	Number(string str) { this->assign(str); }
	virtual void recursiveNaN() = 0;

	void isNanVirtual(std::string s)
	{
		recursiveNaN(s, 0, 0);
	}
	
	bool recursiveNaN(std::string s, int i, int j)
	{
		if (s.length() == 0)
			return false;
		if (i == s.length())
			return true;
		if (s[i] > 47 && s[i] < 58)
			return recursiveNaN(s, i + 1, j);
		else if (s[i] == '.')
		{
			if (j == 0)
			{
				j = 1;
				return recursiveNaN(s, i + 1, j);
			}
			else
				return false;
		}
		else
			return false;
	}

};




#endif

double.cpp
#include <iostream>
#include <string>
#include <sstream>
#include"Double.h"
#include"Number.h"
using namespace std;
Double::Double(double d): Number(std::to_string(d)), nan(false)

{

}
Double::Double()
{
	dub = 0.0;
	nan = false;
}

Double::Double(const Double& d)
{
	equals(d.dub);
	nan = false;
}

Double::Double(double d)
{
	dub = d;
	nan = false;
}

Double::Double(const Integer& i)
{
	equals((double)i.toInt());
	nan = false;
}

Double::Double(const string str)
{
	this->equals(str);
}

double Double::toDouble() const
{
	return this->dub;
}

void Double::equals(std::string s)
{
	this->recursiveNaN(s, 0, 0);
	if (this->nan)
	{
		this->assign(s);
	}
	else
		this->assign("0.0");
}

void Double::equals(double d)
{
	dub = d;
}

Double Double::add(const Double& d)

{
	Double results(dub + d.toDouble());
	return results;
}

Double Double::sub(const Double& d)
{
	Double results(dub - d.toDouble());
	return results;
}

Double Double::mul(const Double& d)
{
	Double results(dub * d.toDouble());
	return results;
}

Double Double::div(const Double& d)
{
	Double results(dub / d.toDouble());
	return results;
}

Double Double::add(double& d)
{
	Double results;
	results.equals(this->toDouble() + d);
	return results;

}

Double Double::sub(double& d)
{
	Double results;
	results.equals(this->toDouble() - d);
	return results;
}

Double Double::mul(double& d)
{
	Double results;
	results.equals(this->toDouble() * d);
	return results;
}

Double Double::div(double& d)
{
	Double results;
	results.equals(this->toDouble() / d);
	return results;
}

Double Double::operator + (const Double& d)
{
	return this->add(d);
}

Double Double::operator -(const Double& d)
{
	return this->sub(d);
}

Double Double::operator * (const Double& d)
{
	return this->mul(d);
}

Double Double::operator / (const Double& d)
{
	return this->div(d);
}

Double& Double::operator = (const Double& d)
{
	this->equals(d.toDouble());
	return *this;
}

Double& Double::operator = (double d)
{
	this->equals(d);
	return *this;
}

Double& Double::operator = (std::string s)
{
	this->equals(s);
	return *this;
}

bool Double::operator == (const Double& d)
{
	return this->dub == d.dub;
}
bool Double::operator == (double d)
{
	return this->dub == d;
}
std::string Double::toString()
{
	std::stringstream ss;
	ss << this->dub;
	return ss.str();
}

[code]
Last edited on
integer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#include <iostream>
#include <sstream>
#include <string>
#include "Integer.h"

using namespace std;

Integer::Integer()
{
	ints = 0;
	nan = false;
}

Integer::Integer(const Integer& i)
{
	equals(i.ints);
	nan = false;
}

Integer::Integer(int i)
{
	ints = i;
	nan = false;
}

Integer::Integer(const string str)
{
	this->equals(str);
}

int Integer::toInt() const
{

	return this->ints;

}

void Integer::equals(int i)
{

	ints = i;

}

void Integer::equals(string s)
{
	this->recursiveNaN(s, 0, 0);
	if (this->nan)
		this->assign(s);
	else
		this->assign("0");
}

Integer Integer::add(const Integer& i)
{
	Integer results(this->ints + i.toInt());
	return results;
}

Integer Integer::sub(const Integer& i)
{
	Integer results(this->ints - i.toInt());
	return results;
}

Integer Integer::mul(const Integer& i)
{
	Integer results(this->ints - i.toInt());
	return results;
}

Integer Integer::div(const Integer& i)
{
	Integer results(this->ints - i.toInt());
	return results;
}

Integer Integer::add(int& i)
{
	Integer results;
	results.equals(this->toInt() + i);
	return results;
}

Integer Integer::sub(int& i)
{
	Integer results;
	results.equals(this->toInt() - i);
	return results;
}

Integer Integer::mul(int& i)
{
	Integer results;
	results.equals(this->toInt() * i);
	return results;
}

Integer Integer::div(int& i)
{
	Integer results;
	results.equals(this->toInt() / i);
	return results;
}

Integer Integer::operator + (const Integer& i)
{
	return this->add(i);
}
Integer Integer::operator - (const Integer& i)
{
	return this->sub(i);
}
Integer Integer::operator * (const Integer& i)
{
	return this->mul(i);
}
Integer Integer::operator / (const Integer& i)
{
	return this->div(i);
}

Integer& Integer::operator=(const Integer& i)
{
	this->equals(i.toInt());
	return *this;
}

Integer& Integer::operator = (int i)
{
	this->equals(i);
	return *this;
}

Integer& Integer::operator = (string s)
{
	this->equals(s);
	return *this;
}

bool Integer::operator==(const Integer& i)
{
	return this->ints == i.ints;
}

bool Integer::operator == (int i)
{
	return this->ints = i;
}

std::string Integer::toString()
{
	std::stringstream ss;
	ss << this->ints;
	return ss.str();
}
main.cpp
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>

#include "Double.h"
#include "Integer.h"
using namespace std;
string toString(int num);
string toString(float num);

int writeToFile(vector <float*> dNumbers);
int writeToFile(vector <int*> iNumbers);
int main()
{
	vector <int*> iNumbers;
	vector <float*> dNumbers;
	char data[100];
	fstream ifile;

	ifile.open("num.txt");
	if (!ifile)
	{
		cout << "ERROR WITH FILE";
		return 1;
	}

	while (!ifile.eof())
	{
		ifile.getline(data, 100);
		// checking if its either a dub or an int with an if else
		if (strstr(data, "."))
		{
			dNumbers.push_back(new float(atof(data)));
		}
		else
		{
			iNumbers.push_back(new int(atoi(data)));
		}
	}
	writeToFile(iNumbers);
	writeToFile(dNumbers);
	ifile.close();
	cout << "Files have been made";
};
string toString(int num)
{
	stringstream ss;
	ss << num;
	return ss.str();
}

string toString(float num)
{
	stringstream ss;
	ss << num;
	return ss.str();
}

int writeToFile(vector <float*> dNumbers)
{
	ofstream outFileDub;
	outFileDub.open("double.txt");
	if (!outFileDub)
	{
		cout << "ERROR WITH FILE" << endl;
		return 1;
	}

	for (vector <float*> ::const_iterator iter = dNumbers.begin(); iter != dNumbers.end(); iter++)
	{
		outFileDub << toString(**iter) << endl;
	}

	outFileDub.close();

	return 0;
}
int writeToFile(vector <int*> iNumbers)
{
	ofstream outFileInt;
	outFileInt.open("integer.txt");
	if (!outFileInt)
	{
		cout << "ERROR WITH FILE" << endl;
		return 1;
	}

	for (vector <int*> ::const_iterator iter = iNumbers.begin(); iter != iNumbers.end(); iter++)
	{
		outFileInt << toString(**iter) << endl;
	}

	outFileInt.close();

	return 0;

}
Last edited on
I need help with fixing my code so i can do the next assignment...

So what exactly seems to be wrong with your code?

It desperately needs code tags!
@LaminarFlow
Read and act -> https://www.cplusplus.com/articles/jEywvCM9/
I need help with the polymorphism part just with me adding the numbers class with the virtual function since when i tried to put it in now my code doesnt work. How do i use the Nan function that i have in number.h to work with double and integer. Cuz the next part is just adding an exceptions class but i already made my class and i just cant get my virtual function to work. It gives me alot of errors also im using visual studios 2019... I just want to know what im doing wrong so i can correct it and an example how to fix it @jlb
Last edited on
Topic archived. No new replies allowed.