Created
January 16, 2023 12:11
-
-
Save Titory0/0fd1fc4824256aa890f8d2a8875f2cf8 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_print_alphabet_bis_bis() | |
{ | |
string imprimer =""; | |
char[] alphabet = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; | |
foreach(char lettre in alphabet) | |
{ | |
imprimer+=lettre; | |
} | |
Console.Write(imprimer); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment