LanQiaoTestCodes/小蓝做实验.java

21 lines
563 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package LanQiaoOJ;
/*
* 问题描述
小蓝很喜欢科研,他最近做了一个实验得到了一批实验
数据,一共是两百万个正整数。
如果按照预期所有的实验数据x都应该满足10^7≤x≤10^8。
但是做实验都会有一些误差,会导致出现一些预期外的
数据这种误差数据y的范围是10^3≤y≤10^12
由于小蓝做实验很可靠,所以他所有的实验数据中
99.99%以上都是符合预期的。
小蓝的所有实验数据都在primes.txt中现在他想统计
这两百万个正整数中有多少个是质数,你能告诉他吗?*/
public class 小蓝做实验 {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}