-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddress.cpp
More file actions
67 lines (62 loc) · 1.02 KB
/
Copy pathaddress.cpp
File metadata and controls
67 lines (62 loc) · 1.02 KB
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
#ifndef ADDRESS_H
#define ADDRESS_H
#include <string>
#include <iostream>
#include <iomanip>
using namespace std;
class address
{
private:
int streetnum;
string streetname,town,state;
public:
address()
{}
//set
void setstreetnum(int n)
{
streetnum=n;
}
void setstreetname(string s)
{
streetname=s;
}
void settwon(string t)
{
town=t;
}
void setstate(string s)
{
state=s;
}
//get
int getstreetnum()
const
{
return streetnum;
}
string getstreetname()
const
{
return streetname;
}
string gettwon()
const
{
return town;
}
string getstate()
const
{
return state;
}
friend ostream& operator<<(ostream &output,address &a)
{
output<<setw(30)<< to_string(a.getstreetnum()) + " " + a.getstreetname() + "," + a.gettwon() + "," + a.getstate()<<endl;
return output;
}
~address()
{
}
};
#endif