Advertisement
BurningBunny

Periodic Table in string[][] Array

Jun 26th, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 5.70 KB | None | 0 0
  1. // Periodic Table in string[][] Array
  2. // [0] Atomic Number [1] Abbreviated name [2] Name [3] Mass (in g/mol).
  3.  
  4. string[][] data = new string[][] {
  5.     new string[] {"89", "Ac", "Actinium", "227"},
  6.     new string[] {"13", "Al", "Aluminum", "26.98154"},
  7.     new string[] {"56", "Ba", "Barium", "137.33"},
  8.     new string[] {"4", "Be", "Beryllium", "9.01218"},
  9.     new string[] {"83", "Bi", "Bismuth", "208.9804"},
  10.     new string[] {"107", "Bh", "Bohrium", "262"},
  11.     new string[] {"48", "Cd", "Cadmium", "112.4"},
  12.     new string[] {"20", "Ca", "Calcium", "40.08"},
  13.     new string[] {"55", "Cs", "Cesium", "132.9054"},
  14.     new string[] {"24", "Cr", "Chromium", "51.996"},
  15.     new string[] {"27", "Co", "Cobalt", "58.9332"},
  16.     new string[] {"29", "Cu", "Copper", "63.546"},
  17.     new string[] {"110", "Ds", "Darmstadtium", "261.9"},
  18.     new string[] {"105", "Db", "Dubnium", "261.9"},
  19.     new string[] {"87", "Fr", "Francium", "(233)"},
  20.     new string[] {"31", "Ga", "Gallium", "69.72"},
  21.     new string[] {"79", "Au", "Gold", "196.9655"},
  22.     new string[] {"72", "Hf", "Hafnium", "178.49"},
  23.     new string[] {"108", "Hs", "Hassium", "264.8"},
  24.     new string[] {"49", "In", "Indium", "114.82"},
  25.     new string[] {"77", "Ir", "Iridium", "192.2"},
  26.     new string[] {"26", "Fe", "Iron", "55.85"},
  27.     new string[] {"57", "La", "Lanthanum", "138.91"},
  28.     new string[] {"82", "Pb", "Lead", "207.2"},
  29.     new string[] {"3", "Li", "Lithium", "6.941"},
  30.     new string[] {"12", "Mg", "Magnesium", "24.305"},
  31.     new string[] {"25", "Mn", "Manganese", "54.9380"},
  32.     new string[] {"109", "Mt", "Meitnerium", "265.9"},
  33.     new string[] {"80", "Hg", "Mercury", "200.59"},
  34.     new string[] {"42", "Mo", "Molybdenum", "95.94"},
  35.     new string[] {"28", "Ni", "Nickel", "58.71"},
  36.     new string[] {"41", "Nb", "Niobium", "92.91"},
  37.     new string[] {"76", "Os", "Osmium", "190.2"},
  38.     new string[] {"46", "Pd", "Palladium", "106.42"},
  39.     new string[] {"78", "Pt", "Platinum", "195.09"},
  40.     new string[] {"19", "K", "Potassium", "39.0983"},
  41.     new string[] {"88", "Ra", "Radium", "226.0254"},
  42.     new string[] {"75", "Re", "Rhenium", "186.23"},
  43.     new string[] {"45", "Rh", "Rhodium", "102.91"},
  44.     new string[] {"37", "Rb", "Rubidium", "85.4678"},
  45.     new string[] {"44", "Ru", "Ruthenium", "101.1"},
  46.     new string[] {"104", "Rf", "Rutherfordium", "260.9"},
  47.     new string[] {"21", "Sc", "Scandium", "44.9559"},
  48.     new string[] {"106", "Sg", "Seaborgium", "262.94"},
  49.     new string[] {"47", "Ag", "Silver", "107.87"},
  50.     new string[] {"11", "Na", "Sodium", "22.98977"},
  51.     new string[] {"38", "Sr", "Strontium", "87.62"},
  52.     new string[] {"73", "Ta", "Tantalum", "180.95"},
  53.     new string[] {"43", "Tc", "Technetium", "(99)"},
  54.     new string[] {"81", "Tl", "Thallium", "204.383"},
  55.     new string[] {"50", "Sn", "Tin", "118.69"},
  56.     new string[] {"22", "Ti", "Titanium", "47.90"},
  57.     new string[] {"74", "W", "Tungsten", "183.85"},
  58.     new string[] {"112", "Uub", "Ununbium", "276.8"},
  59.     new string[] {"116", "Uuh", "Ununhexium", ""},
  60.     new string[] {"114", "Uuq", "Ununquadium", "289"},
  61.     new string[] {"23", "V", "Vanadium", "50.9414"},
  62.     new string[] {"39", "Y", "Yttrium", "88.9059"},
  63.     new string[] {"30", "Zn", "Zinc", "65.37"},
  64.     new string[] {"40", "Zr", "Zirconium", "91.22"},
  65.     new string[] {"51", "Sb", "Antimony", "121.75"},
  66.     new string[] {"33", "As", "Arsenic", "74.9216"},
  67.     new string[] {"85", "At", "Astatine", "(210)"},
  68.     new string[] {"5", "B", "Boron", "10.81"},
  69.     new string[] {"32", "Ge", "Germanium", "72.59"},
  70.     new string[] {"84", "Po", "Polonium", "(210)"},
  71.     new string[] {"14", "Si", "Silicon", "28.0855"},
  72.     new string[] {"52", "Te", "Tellurium", "127.6"},
  73.     new string[] {"35", "Br", "Bromine", "79.904"},
  74.     new string[] {"6", "C", "Carbon", "12.011"},
  75.     new string[] {"17", "Cl", "Chlorine", "35.453"},
  76.     new string[] {"9", "F", "Fluorine", "18.998403"},
  77.     new string[] {"1", "H", "Hydrogen", "1.007825"},
  78.     new string[] {"53", "I", "Iodine", "126.9045"},
  79.     new string[] {"7", "N", "Nitrogen", "14.0067"},
  80.     new string[] {"8", "O", "Oxygen", "15.999"},
  81.     new string[] {"15", "P", "Phosphorus", ""},
  82.     new string[] {"34", "Se", "Selenium", "78.96"},
  83.     new string[] {"16", "S", "Sulphur", "32.06"},
  84.     new string[] {"18", "Ar", "Argon", "39.948"},
  85.     new string[] {"2", "He", "Helium", "4.00260"},
  86.     new string[] {"36", "Kr", "Krypton", "83.80"},
  87.     new string[] {"10", "Ne", "Neon", "20.179"},
  88.     new string[] {"86", "Rn", "Radon", "(222)"},
  89.     new string[] {"54", "Xe", "Xenon", "131.29"},
  90.     new string[] {"95", "Am", "Americium", "(243)"},
  91.     new string[] {"97", "Bk", "Berkelium", "(247)"},
  92.     new string[] {"98", "Cf", "Californium", "(251)"},
  93.     new string[] {"58", "Ce", "Cerium", "140.12"},
  94.     new string[] {"96", "Cm", "Curium", "(247)"},
  95.     new string[] {"66", "Dy", "Dysprosium", "162.50"},
  96.     new string[] {"99", "Es", "Einsteinium", "254"},
  97.     new string[] {"68", "Er", "Erbium", "167.26"},
  98.     new string[] {"63", "Eu", "Europium", "167.26"},
  99.     new string[] {"100", "Fm", "Fermium", "(257)"},
  100.     new string[] {"64", "Gd", "Gadolinium", "157.25"},
  101.     new string[] {"67", "Ho", "Holmium", "164.9"},
  102.     new string[] {"103", "Lr", "Lawrencium", "(262)"},
  103.     new string[] {"71", "Lu", "Lutetium", "174.97"},
  104.     new string[] {"101", "Md", "Mendelevium", "(258)"},
  105.     new string[] {"60", "Nd", "Neodymium", ""},
  106.     new string[] {"93", "Np", "Neptunium", "(237)"},
  107.     new string[] {"102", "No", "Nobelium", "259"},
  108.     new string[] {"94", "Pu", "Plutonium", "(244)"},
  109.     new string[] {"59", "Pr", "Praseodymium", "140.91"},
  110.     new string[] {"61", "Pm", "Promethium", "(147)"},
  111.     new string[] {"91", "Pa", "Protactinium", "231.0359"},
  112.     new string[] {"62", "Sm", "Samarium", "150.35"},
  113.     new string[] {"65", "Tb", "Terbium", "158.92534"},
  114.     new string[] {"90", "Th", "Thorium", "232.04"},
  115.     new string[] {"69", "Tm", "Thulium", "168.93"},
  116.     new string[] {"92", "U", "Uranium", "238.03"},
  117.     new string[] {"70", "Yb", "Ytterbium", "173.04"}
  118. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement