fork download
  1. using System;
  2.  
  3. class Program
  4. {
  5. static void Main()
  6. {
  7. bool?[] sheeps = { true, true, false, null, true };
  8. int count = 0;
  9. foreach (bool? sheep in sheeps)
  10. {
  11. if (sheep == true)
  12. count++;
  13. }
  14. Console.WriteLine(count);
  15. }
  16. }
  17.  
Success #stdin #stdout 0.06s 28764KB
stdin
Standard input is empty
stdout
3