Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
ASCII -> Braille ASCII
//ASCII -> Braille ASCII using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { string brailleMap = " A1B'K2L@CIF/MSP\"E3H9O6R^DJG>NTQ,*5<-U8V.%[$+X!&;:4\\0Z7(_?W]#Y)="; string input; while ((input = Console.ReadLine()) != null) { for (int i = 0; i < input.Length; i++) { Console.Write((char)(brailleMap.IndexOf(input.ToUpper()[i]) + 0x2800)); } Console.WriteLine(); } } } }
run
|
edit
|
history
|
help
1
jjj
MergeSort
Intuit // C# // listing_4.4 (StreamReader // input.txt)
hola1
help sending dataGrid Rows to Access Table.
Hello world test
radix sort
test save
2
Hehd