第一题:给出以“ ”隔开的字符串,找出字符串中包含‘e’的单词个数 第二题:给出四个点,计算四边形的面积。 static class Point{ int x; int y; public Point(int x, int y){ this.x = x; this.y = y; } } public static void main(String[] args) { Point p1 = new Point(1,1); Point p2 = new Point(2,2); Point p3 = ne...