Java tutorial
public class Main { public static void main(String[] args) { // check the number of processors available Runtime runTime = Runtime.getRuntime(); System.out.println(runTime.availableProcessors()); } }