Arithmetic/Rational/C sharp: Difference between revisions

syntaxhighlight manual update
m (prepare for inclusion as template)
(syntaxhighlight manual update)
 
(One intermediate revision by one other user not shown)
Line 1:
<noinclude>{{collection|Rational Arithmetic}}</noinclude>
<langsyntaxhighlight lang="csharp">using System;
 
struct Fraction : IEquatable<Fraction>, IComparable<Fraction>
Line 11:
if (num == 0)
{
denom = 01;
}
else if (denom == 0)
Line 174:
 
#endregion
}</langsyntaxhighlight>
Test program:
<langsyntaxhighlight lang="csharp">using System;
 
static class Program
Line 200:
}
}
}</langsyntaxhighlight>
{{out}}
<pre>6 is perfect