Advertisement
mdamyanova

Index Of Letters

May 31st, 2016
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _09.IndexOfLetters
  4. {
  5.     public class IndexOfLetters
  6.     {
  7.         public static void Main()
  8.         {
  9.             string word = Console.ReadLine();
  10.  
  11.             foreach (char letter in word)
  12.             {
  13.                 Console.WriteLine($"{letter} -> {letter - 'a'}");
  14.             }
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement