Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _09._Index_of_Letters
- {
- class IndexOfLetters
- {
- static void Main(string[] args)
- {
- string word = Console.ReadLine();
- foreach (char letter in word)
- {
- int foundIndex = letter - 97;
- Console.WriteLine($"{letter} -> {foundIndex}");
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment