Advertisement
CuST0M1z3

FirstTenNumbers

Apr 25th, 2013
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7.  
  8. class FirstTenNumbers
  9. {
  10. static void Main()
  11. {
  12. int[] numbers = { 1, 5, 8, 15, 25, 3, 4, 8, 14, 17, 111, 432, 42 };
  13.  
  14. for (int i = 0; i < 10; i++)
  15. {
  16. Console.WriteLine(numbers[i]);
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement