Показать сообщение отдельно
Старый 07.02.2008, 11:53   #10  
oip is offline
oip
Axapta
Лучший по профессии 2014
 
2,564 / 1416 (53) ++++++++
Регистрация: 28.11.2005
Записей в блоге: 1
Угу, и других комбинаций больше нет.

X++:
static void Jobeee(Args _args)
{
    container c = ['a','b','c','d','e','f','j','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'];
    int       length = conlen (c);
    int       i = 1;
    int       j;
    str       s;
;
    while (i <= length)
    {
        j = 1;
        while (j <= length)
        {
            s = strFmt("%1", str2date(conpeek(c,i)+(conpeek(c,j)), 123));

            if (s)
                info(s);

            j++;
        }
        i++;
    }
}