mirror of
https://github.com/github/codeql.git
synced 2026-07-04 11:05:33 +02: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;
|
|
}
|
|
}
|