Answers for "c# absolute value of int"

C#
7

c# absolute value

int n = -5;
int abs_n = Math.Abs(n);
Posted by: Guest on May-07-2021

C# Answers by Framework

Browse Popular Code Answers by Language