-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompany.h
39 lines (31 loc) · 805 Bytes
/
company.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
#ifndef COMPANY_H
#define COMPANY_H
#include <bits/stdc++.h>
#include <stdio.h>
using namespace std;
class COMPANY {
private:
string iTen;
string iMa;
double iGiasan;
double iGiatran;
double iGiadongcua;
string iKhoiluong;
public:
COMPANY();
COMPANY(string , string ,double ,double ,double , string);
void setCOMPANY(string , string ,double ,double ,double , string);
void setTen(string ) ;
void setMa(string ) ;
void setGiasan(double ) ;
void setGiatran(double ) ;
void setGiadongcua(double ) ;
void setKhoiluong(string ) ;
string getTen();
string getMa();
double getGiasan();
double getGiatran();
double getGiadongcua();
string getKhoiluong();
};
#endif