-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTableGeneratorUsingTextBlock.java
28 lines (28 loc) · 1.46 KB
/
TableGeneratorUsingTextBlock.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
public class TableGeneratorUsingTextBlock {
public static void main(String[] args){
String table = """
MasterDevSkills (PVT) LTD
403, Church St, Toronto, ON, CA.
CUSTOMER INVOICE
+-----------------------+-------------------------+
|INFO | CUSTOMER |
+-----------------------+-------------------------+
|DATE: 2022-08-16 | XYZ Distributors |
|TIME: 10:53:AM | MOB: +1 317-468-0173 |
|BILL NO: 12 | ADDRESS: No 25, Main St |
|INVOICE NO: 458-80-108 | reet, ON, CA |
+-----------------------+-------------------------+
| SELLING DETAILS |
+-----------------+-----------+---+---------------+
|ITEM | PRICES($) | QTY| VALUE|
+-----------------+-------------------------------+
|Optical Mouse | 120.00 | 20 | 2400.00|
|Gaming Keyboard | 550.00 | 30 | 16500.00|
+-----------------+-----------+-----+-------------+
GROSS 18,900.00
DISCOUNT(5%) 945.00
PAYABLE 17,955.60
""";
System.out.println(table);
}
}