Commit 73a1be62 authored by jinli gu's avatar jinli gu
Browse files

Delete triangle.java

parent 225b65de
package com.jsh.erp.utils;
public class Triangle extends Shape {
@Override
public double area(double length,double width) {
System.out.println ("triangle ~area");
return 1.0/2*length*width;
}
}
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment