C++ nested loops explained ➿

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

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

  • @BroCodez
    @BroCodez  2 года назад +18

    #include

    int main()
    {
    int rows;
    int columns;
    char symbol;
    std::cout > rows;
    std::cout > columns;
    std::cout > symbol;
    for(int i = 1; i

    • @benmagudu9439
      @benmagudu9439 3 месяца назад

      #include
      int main() {
      // Converting height
      double height;
      std::string unit ;
      double converted_height;
      std::cout

  • @feggy585
    @feggy585 Год назад +19

    Hey bro, I know you mentioned that not alot of people watch these C++ series but I just wanted to appreciate you for it
    You're the best teacher out there and I'd let you know when I conquer the world.

  • @chromakuro
    @chromakuro 3 месяца назад +1

    I tried to make the rectangle before looking at your example, but I misinterpreted what you said and made a more difficult version instead :D I feel like I learnt something useful by going through the trial and error
    #include
    int main()
    {
    int rows;
    int columns;
    int columncurrent;
    int rowcurrent;
    std::cout > rows;
    std::cout > columns;
    columncurrent = columns;
    rowcurrent = rows;
    for(columncurrent; columncurrent > 0; columncurrent--)
    {
    std::cout 0; rowcurrent--)
    {
    std::cout 2; columncurrent--)
    {
    std::cout

  • @FrederikWollert
    @FrederikWollert 7 месяцев назад +1

    And again and awesome Video. Defeat the RUclips algorithm.

  • @criminalx7099
    @criminalx7099 2 года назад +5

    well explained bro

  • @hotman718
    @hotman718 Месяц назад +5

    Good lesson. Why don't you use namespace std so you don't have to type std every time

    • @oneshotd1
      @oneshotd1 Месяц назад +1

      sometimes in long codes namespace std causes trouble with other commands, thus he prepared us for that

  • @dscecseprohitsil3rdsem949
    @dscecseprohitsil3rdsem949 Год назад +1

    Bro you helped me a lot. And thanks for making these videos. #respect

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

    ty

  • @gamsterilyass2952
    @gamsterilyass2952 5 месяцев назад

    ❤❤

  • @artemzakharchuk2842
    @artemzakharchuk2842 Год назад +1

    Great lessons!
    i appreciate your hard work very much