Answers for "if else greater than or equal to 0 using turnery"

C#
1

c# ternary operator

double sinc(double x) => x != 0.0 ? Math.Sin(x) / x : 1;

Console.WriteLine(sinc(0.1));
Console.WriteLine(sinc(0.0));
// Output:
// 0.998334166468282
// 1
Posted by: Guest on March-24-2020

Code answers related to "if else greater than or equal to 0 using turnery"

C# Answers by Framework

Browse Popular Code Answers by Language