1. 26.
    0
    c# içindir

    int uzunluk = textBox1.Length;
    string [] a = {uzunluk};
    for(int i = 0 ; i < uzunluk ; i++)
    {
    a[i] = textBox1.Substring(i,1);
    }
    MessageBox. Show("Birler Basamağı = " + a[uzunluk]);
    MessageBox. Show("Onlar Basamağı = "+a[uzunluk-1]);
    .
    .
    .
    .
    ···
   tümünü göster