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

This commit is contained in:
2024-06-10 16:42:32 +08:00
parent 2da90eeebf
commit c9d2aa581b
16 changed files with 324 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
//TestArea.java
package Task4;
public class TestArea {
public static void main(String[] args) {
Rectangle r1 = new Rectangle(10.0, 20.0);
System.out.println(r1.toString());
}
}