18 lines
223 B
Java
18 lines
223 B
Java
package p;
|
|
|
|
import p.Data;
|
|
|
|
class DataTest {
|
|
static void main() {
|
|
test();
|
|
}
|
|
|
|
static int test() {
|
|
return test2(6, 3) * 5;
|
|
}
|
|
|
|
static int test2(int a, int b) {
|
|
return a - b;
|
|
}
|
|
}
|