Advertisement
Guest User

toTen

a guest
Jan 22nd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. using System;
  2. class Program
  3. {
  4. static void Main()
  5. {
  6. string[] input = new string[] { "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten" };
  7. for (int i = 0; i < input.Length; i++)
  8. {
  9. Console.WriteLine("{0}", input[i]);
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement