Consecutive primes with ascending or descending differences: Difference between revisions

Content added Content deleted
(Added C++ solution)
Line 116: Line 116:


=={{header|C#|CSharp}}==
=={{header|C#|CSharp}}==
{{incorrect|C#|Please make this code readable. Format it!}}
Extended the limit up to see what would happen.
Extended the limit up to see what would happen.
<lang csharp>using System.Linq; using System.Collections.Generic; using TG = System.Tuple<int, int>; using static System.Console;
<lang csharp>using System.Linq; using System.Collections.Generic; using TG = System.Tuple<int, int>; using static System.Console;