Arrays
// Format 1double[] list = {1.0, 2.1, 3.3};// Format 2double list[] = {1.1, 2.2, 3.4};
Both ways above work, the first one is more common and used by College Board on the AP Exam