fork download
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5. public class Test {
  6. public static void Main() => Console.WriteLine($"AVG: {
  7. (new List<float> {
  8. 3/5f,
  9. 5/3f,
  10. 0/7f,
  11. 7/0f
  12. }).Average() }");
  13. }
Success #stdin #stdout 0.02s 17220KB
stdin
Standard input is empty
stdout
AVG: Infinity