You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
611 B
C#

using System;
public class Exercise3
{
public static void Main()
{
string str;
int l=0;
Console.Write("\n\nSeparate the individual characters from a string :\n");
Console.Write("------------------------------------------------------\n");
Console.Write("Input the string : ");
str = Console.ReadLine();
Console.Write("The characters of the string are : ");
while (l <= str.Length - 1)
{
Console.Write("{0} ", str[l]);
l++;
}
Console.Write("\n\n");
}
}