Search:

Type: Posts; User: -Dizzy-

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    991

    thank you!! "typename" was what i've been...

    thank you!!

    "typename" was what i've been looking for.

    the first thing you suggested isn't necessary because i predefined operator== as a template.
  2. Replies
    2
    Views
    991

    Problem using a privatly defined struct

    I have this code:



    template <class T>
    class SortedList
    {
    private:
    struct Node
    {
  3. Replies
    3
    Views
    2,565

    got it done!! moi, your advice really helped......

    got it done!!
    moi, your advice really helped... thx!


    for (i=1;i<=4;i++)
    {
    for (j=1;j<=4;j++)
    if (j>4-i)
    printf("*");
    else printf(" ");
  4. Replies
    3
    Views
    2,565

    simple triangle

    hi!
    now i need to build this triangle :


    *
    **
    ***
    ****

    imagine it's align to the right.
Results 1 to 4 of 4