mirror of
https://github.com/github/codeql.git
synced 2026-01-26 04:43:00 +01:00
13 lines
160 B
C#
13 lines
160 B
C#
double reciprocal(double input)
|
|
{
|
|
try
|
|
{
|
|
return 1 / input;
|
|
}
|
|
catch
|
|
{
|
|
// division by zero, return 0
|
|
return 0;
|
|
}
|
|
}
|