Skip to content

Instantly share code, notes, and snippets.

@Titory0
Created January 16, 2023 12:13
Show Gist options
  • Save Titory0/f25e9435b4dc23f99da67d0f972fe106 to your computer and use it in GitHub Desktop.
Save Titory0/f25e9435b4dc23f99da67d0f972fe106 to your computer and use it in GitHub Desktop.
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