Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Unicode Braille Patterns.
//Unicode Braille Patterns. using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { Console.WriteLine("Basic (6 Dots)"); for (int i = 0x1; i <= 0x40; i++) { Console.Write((char)(0x2800 + i - 1)); if (i % 0x10 == 0) { Console.WriteLine(); } } Console.WriteLine("\nExtended (8 Dots)"); for (int i = 0x41; i <= 0x100; i++) { Console.Write((char)(0x2800 + i - 1)); if (i % 0x10 == 0) { Console.WriteLine(); } } } } }
run
|
edit
|
history
|
help
1
time
Battle Algorythm
Date Conversion
Knapsack Problem - recursive
IF... ELSE
first VB code
ReverseArrayC#
4.1 Composition
Encrypt-Decrypt String
Anq Calc