小易最近在數(shù)學(xué)課上學(xué)習(xí)到了集合的概念,集合有三個特征:1.確定性 2.互異性 3.無序性.小易的老師給了小易這樣一個集合:S = { p/q | w ≤ p ≤ x, y ≤ q ≤ z }需要根據(jù)給定的w,x,y动知,z,求出集合中一共有多少個元素。小易才學(xué)習(xí)了集合還解決不了這個復(fù)雜的問題,需要你來幫助他狐赡。 輸入描述:
輸入包括一行:一共4個整數(shù)分別是w(1 ≤ w ≤ x),x(1 ≤ x ≤ 100)疟丙,y(1 ≤ y ≤ z)颖侄,z(1 ≤ z ≤ 100).以空格分隔
輸出描述:
輸出集合中元素的個數(shù)
輸入例子1:
1 10 1 1
輸出例子1:
10
代碼
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
while(in.hasNext()) {
int w = in.nextInt();
int x = in.nextInt();
int y = in.nextInt();
int z = in.nextInt();
solve(w,x,y,z);
}
}
private static void solve(int w,int x, int y, int z) {
Set<Double> set = new HashSet<>();
for(int i=w;i<=x;i++) {
for(int j=y;j<=z;j++) {
set.add(i*1.0/j);
}
}
System.out.println(set.size());
}
}