| 5 | public void sub(int a, int b); |
| 6 | } |
| 7 | class arithmOp implements it1 { |
| 8 | public void add(int p, int q) { |
| 9 | System.out.println("Addition of two numbers: " + (p + q)); |
| 10 | } |
| 11 | public void sub(int p, int q) { |
| 12 | System.out.println("Addition of two numbers: " + (p - q)); |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | public class StudentInterface { |
| 17 | public static void main(String[] args) { |
nothing calls this directly
no outgoing calls
no test coverage detected