这是一幅心理阴影面积图。我们都以为自己可以匀速前进(图中蓝色直线),而拖延症晚期的我们往往执行的是最后时刻的疯狂赶工(图中的红色折线)。由红、蓝线围出的面积,就是我们在做作业时的心理阴影面积。
现给出红色拐点的坐标 (x,y),要求你算出这个心理阴影面积。
输入在一行中给出 2 个不超过 100 的正整数 x 和 y,并且保证有 x>y。这里假设横、纵坐标的最大值(即截止日和最终完成度)都是 100。
在一行中输出心理阴影面积。
友情提醒:三角形的面积 = 底边长 x 高 / 2;矩形面积 = 底边长 x 高。嫑想得太复杂,这是一道 5 分考减法的题……
90 10
4000
按照题目的描述,不要想的很复杂
暂无
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int x = scanner.nextInt();
int y = scanner.nextInt();
//用理想面积 - 矩形面积 - 两个三角形面积
int idealArea = 100*100/2;
int rectangleArea = (100-x) * y;
int triangleArea1 = x * y / 2;
int triangleArea2 = (100-x) * (100-y) /2;
System.out.println(idealArea - rectangleArea - triangleArea1 - triangleArea2);
}
}