-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
48 lines (41 loc) · 1.42 KB
/
Main.java
File metadata and controls
48 lines (41 loc) · 1.42 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
package com.company;
import javax.swing.*;
import static com.company.Column.LOG_TAG;
public class Main {
public static void main(String[] args) {
Column C04 = new Column("C04",500,1000);
C04.printColName();
C04.printColDetails();
C04.printColTension();
C04.printColSquash();
C04.printColMoment();
C04.printColReo();
C04.printColCapacity();
C04.printTieSize();
C04.printTieSpacing();
C04.printEffectiveLength();
C04.printColumnLength();
C04.printColumnReoRate();
System.out.println("Lap Length = " + C04.columnLapLength());
System.out.println();
Column C04R = new Column("C04R",1000,500);
C04R.printColName();
C04R.printColDetails();
C04R.printColTension();
C04R.printColSquash();
C04R.printColMoment();
C04R.printColReo();
C04R.printColCapacity();
C04R.printTieSize();
C04R.printTieSpacing();
C04R.printEffectiveLength();
C04R.printColumnLength();
System.out.println("Lap Length = " + C04R.columnLapLength());
C04R.printColumnReoRate();
//JFrame frame = new JFrame("Zendaya Coleman");
//JLabel label = new JLabel("Becky G",JLabel.CENTER);
//frame.add(label);
//frame.setSize(300,300);
//frame.setVisible(true);
}
}