project created

This commit is contained in:
2026-06-23 05:19:37 +08:00
parent 1390a6f2e4
commit 1ba0f4ba28
9 changed files with 282 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
package com.ap;
public class MathHelper {
public static int multiply(int a, int b) {
return a * b;
}
public static int square(int x) {
return x * x;
}
public static int max(int a, int b) {
return a > b ? a : b;
}
}