Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
NumsToVars
using System; using static System.String; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { //Your code goes here string str = @"545232155"; str=str.Replace('1', 'A'); str=str.Replace('2', 'B'); str=str.Replace('3', 'C'); str=str.Replace('4', 'D'); str=str.Replace('5', 'E'); char [] ar = str.ToCharArray(); int num=33; for (int i = 0; i < ar.Length; i++) { Console.WriteLine(num + ":" + ar[i]); num++; } } } }
run
|
edit
|
history
|
help
0
Creating async methods in C# prior to version 5.0
gass
pankaj_sql
a5
SquareMatrixPlusFieldMatrix
Found many section of times intersect (can edit)
SingleLinkedList c# operations
Max occured character in a string
Luhn Formula Demo C#
p1