Program to print atoz and AtoZ.

NIITSANJEEV
Posted by NIITSANJEEV under C# category on | Points: 40 | Views : 1569
using System;
class Loops
{
public static void Main(string[] args)
{
for(char ch='a';ch<='z';ch++){
Console.WriteLine(ch+" ");
}
Console.WriteLine();
for(char ch='A';ch<='Z';ch++){
Console.WriteLine(ch+" ");
}
}
}

Comments or Responses

Login to post response