fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. float[] nums = {1.23f, 5.32f, 3.56f};
  9.  
  10. foreach (float el in nums) {
  11. Console.WriteLine("Element is: " + el);
  12. }
  13. }
  14. }
Success #stdin #stdout 0.02s 24712KB
stdin
13
stdout
Element is: 1.23
Element is: 5.32
Element is: 3.56