Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Next Letter
//Rextester.Program.Main is the entry point for your code. Don't change it. //Microsoft (R) Visual C# Compiler version 2.9.0.63208 (958f2354) using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { char Letter,NextLetter; Console.WriteLine("enter your Letter"); Letter = char.Parse(Console.ReadLine()); if(Letter == 'Z' || Letter == 'z') { NextLetter = 'A'; Console.WriteLine("back to start : {0}",NextLetter); } else { NextLetter = (char) (Letter + 1); Console.WriteLine("next letter is : {0}",NextLetter); } } } }
run
|
edit
|
history
|
help
0
an attempt at making a usable code thing (failed lol)
math 10.97
Command line arguments parser (Lightweight, robust, flexible)
Hei
give coins
Reverse And Shift Char in String
Pyramid
Using Yield Return to mass copy a Class instance
Serialization
Events