MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / ADTFractionApp

Class ADTFractionApp

Programs/ADTFractionApp.java:4–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2
3
4public class ADTFractionApp {
5
6 /**
7 * @param args the command line arguments
8 */
9 public static void main(String[] args) {
10 ADTFraction f1=new ADTFraction(3,5);
11 f1.display();
12 ADTFraction f2=new ADTFraction(7,8);
13 f2.display();
14 }
15
16}
17
18
19class ADTFraction {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected