Array Irregolari (Jagged) - C# TUTORIAL ITALIANO 21

Поделиться
HTML-код
  • Опубликовано: 13 янв 2025

Комментарии • 6

  • @riccardopizzaiola6822
    @riccardopizzaiola6822 2 года назад

    Ciao Edoardo ... si possono creare array di oggetti?
    Utilizzando 48 oggetti Label, mi farebbe comodo gestirle richiamando le Label tramite gli Indici array, piuttosto che richiamando le Label col proprio Nome

  • @mariohu1680
    @mariohu1680 11 месяцев назад

    qualcuno è riuscito a mettere gli array multidimensionali in quelli irregolari ?

    • @GiuseppeVoscarelli-xd5lu
      @GiuseppeVoscarelli-xd5lu 10 месяцев назад

      Questo è il problema ho provato anche io e non mi riusciva, e ho scoperto che quello che viene chiesto, per un neofita è impossibile, perché facendo qualche ricerca ho scoperto che non è possibile se non sai una finzione ben specifica che lui non spiega, e lui per quanto bravo nel modo in cui spiega e per quello che ha condiviso, ha chiesto una cosa non fattibile per un comune mortale XD

  • @sebastianmantelli533
    @sebastianmantelli533 2 года назад +1

    Help :C:C!!
    Task:
    \\The Western Suburbs Croquet Club has two categories of membership, Senior and Open. They would like your help with an application form that will tell prospective members which category they will be placed.
    To be a senior, a member must be at least 55 years old and have a handicap greater than 7. In this croquet club, handicaps range from -2 to +26; the better the player the lower the handicap.
    Input
    Input will consist of a list of pairs. Each pair contains information for a single potential member. Information consists of an integer for the person's age and an integer for the person's handicap.
    Output
    Output will consist of a list of string values (in Haskell and C: Open or Senior) stating whether the respective member is to be placed in the senior or open category.
    Code:
    public class Kata
    {
    public static IEnumerable OpenOrSenior(int[][] data)
    {
    //senior == 55 y\o handicap>7
    string x="Senior";
    string y="Open";
    List list = new List();
    for(int r =0; r7) list.Add(x);
    else list.Add(y);
    }
    }
    return list;
    }
    }
    Scusami ma sono agli inizzi e sto impazzando :C:C ! i tuoi video mi stanno un po aiutando a capirci qualcosa grazie :)

    • @sebastianmantelli533
      @sebastianmantelli533 2 года назад

      faccio ancora fatica a capire cosa significa questo Cannot implicitly convert type 'string' to ... , che sia string o altro mi capita spesso questo errore e non ne vengo mai a capo se non a tentativi :C