Created
January 16, 2023 12:13
-
-
Save Titory0/f25e9435b4dc23f99da67d0f972fe106 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_reverse_alphabet() | |
{ | |
int count=0; | |
char a = 'z'; | |
string alphabet =""; | |
while(count!=26) | |
{ | |
count++; | |
alphabet+=a; | |
a--; | |
} | |
Console.Write(alphabet); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment