-
Notifications
You must be signed in to change notification settings - Fork 0
/
invoice.java
74 lines (67 loc) · 987 Bytes
/
invoice.java
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
import java.util.*;
import java.util.Scanner;
class Invoice
{
private string partno;
private string partdesc;
private int qty;
private double price;
Invoice(String p,String pd,int q,double pr)
{
partno=p;
partdesc=pd;
qty=q;
price=pr;
}
void setpartno()
{
this.partno=partno;
}
void setpartdesc()
{
this.partdesc=partdesc;
}
void setqty()
{
this.qty=qty;
}
void setprice()
{
this.price=price;
}
String getpartno()
{
return partno;
}
String getpartdesc()
{
return partdesc;
}
int getqty()
{
return qty;
}
double getprice()
{
return price;
}
double getInvoice()
{
double amount;
if(qty<0)
{
qty=0;
}
if(price<0)
{
price=0.0;}
amount=qty*price;
return amount;
}
public static void main(String args[])
{
Invoice v=new Invoice("1","hello",50,100.0);
am=v.getInvoice();
System.out.print(am);
}
}