Guest User

char

a guest
Mar 12th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. using System;
  2.  
  3. public class Program
  4. {
  5. public static void Main()
  6. {
  7. for (char i = 'a'; i <= 'c'; i++)
  8. {
  9. Console.Write("{0} ",i);
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment