Created
January 16, 2023 12:25
-
-
Save Titory0/6965eaa954fcd2635defc95840db636a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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