第一題:給出以“ ”隔開的字符串,找出字符串中包含‘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 = n...