Compilerbau2024AbsolutNicht.../demo/Test1.java
2024-07-05 16:38:24 +02:00

12 lines
250 B
Java

public class Test1 {
public void printResult(int a, int b) {
Test2 t = new Test2();
print(t.multiply(a, b));
}
public static void main(String[] args) {
Test1 t = new Test1();
t.printResult(12, 8);
}
}