上传了实验三,已确认无敏感信息

This commit is contained in:
2024-06-10 16:39:18 +08:00
parent f1190f2c2f
commit 5191778415
13 changed files with 234 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
//test.java
package test4;
import java.util.Scanner;
public class test {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
Yard y1 = new Yard(input.nextDouble(), input.nextDouble());
System.err.println(y1.getPerimeter()+" "+y1.getAcreage());
}
}