Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# get smallest of 3 numbers

if (a <= b && a <= c) return a;
if (b <= a && b <= c) return b;
return c;
 
PREVIOUS NEXT
Tagged: #smallest #numbers
ADD COMMENT
Topic
Name
1+6 =