Java—学区房问题
Description
铁牌狗在学区B有一套面积为S1平方米的房子,现在他为了让后代进化成金牌狗,决定在学区A购买一套面积为S2平方米的房子。已知学区B的房子每平方米的售价为T1,学区A的房子每平方米购价为T2,现在铁狗牌想知道卖掉学区B的房子后,还需要多少钱才能买下学区A的房子。
Input
多组输入。对于每组数据:
输入四个整数,S1,S2,T1,T2(0 < S1,S2,T1,T2 <= 1000),具体格式见样例。
Output
输出一个整数代表答案,具体格式见样例。
Sample
Input
1 10 1 10
1 1 10 10
Output
99
0
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner reader = new Scanner(System.in);
int s1, s2, t1, t2, sum;
while (reader.hasNext()) {
s1 = reader.nextInt();
s2 = reader.nextInt();
t1 = reader.nextInt();
t2 = reader.nextInt();
sum = s2 * t2 - s1 * t1;
if (sum >= 0) {
System.out.println(sum);
} else// 如果卖出的房子得到的钱大于需要买房的钱,则输出零即可
{
System.out.println("0");
}
}
}
}