SyntaxFix
Write A Post
Hire A Developer
Questions
string alpha = "abcdefghijklmnopqrstuvwxyz"; string newAlpha = ""; for (int i = 5; i < alpha.Length; i += 6) { newAlpha = alpha.Insert(i, "-"); alpha = newAlpha; }