添加了除法运算

master
Panch 4 years ago
parent 12c02282e2
commit 94d6109d55

@ -0,0 +1,7 @@
package small_computer;
public class Division {
public static float div(float a, float b) {
return a/b;
}
}
Loading…
Cancel
Save