Skip to content

Instantly share code, notes, and snippets.

@Titory0
Created January 16, 2023 12:25
Show Gist options
  • Save Titory0/6965eaa954fcd2635defc95840db636a to your computer and use it in GitHub Desktop.
Save Titory0/6965eaa954fcd2635defc95840db636a to your computer and use it in GitHub Desktop.
public static void ft_is_negative(int n)
{
if(n <0)
{
Console.WriteLine("N");
}
else
{
Console.WriteLine("P");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment