Search:

Type: Posts; User: mphreak

Search: Search took 0.00 seconds.

  1. Thread: Arrays

    by mphreak
    Replies
    11
    Views
    1,504

    Hm, if I understood well, you don't know how to...

    Hm, if I understood well, you don't know how to "store" grades. Well, it's not hard. First index in multidimensional array should be "number of student - 1", and second index should be grades. So,...
  2. Replies
    8
    Views
    2,336

    Well, first of all I want to say "Hi" to all...

    Well, first of all I want to say "Hi" to all members at this community. Here is mine solution:


    int F(int n) {
    if (n <= 1)
    return 1;
    else
    return F(n-2) + F(n-1);
    }
Results 1 to 2 of 2