Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Working with the Array | Variables and Data Types
C++ Introduction
course content

Kursinnhold

C++ Introduction

C++ Introduction

1. Getting Started
2. Introduction to Operators
3. Variables and Data Types
4. Introduction to Program Flow
5. Introduction to Functions

book
Working with the Array

Reminder how to access an array by index

cpp

main

copy
12345678910
#include <iostream> int main() { int myArray[3] = { 67, 23, 87 }; std::cout << myArray[0] << std::endl; std::cout << myArray[1] << std::endl; std::cout << myArray[2] << std::endl; }

Note

Index counting starts from zero, making the first element in a list or array the zeroth element.

Oppgave

Swipe to start coding

  • Declare a string array with a size of 5;
  • Initialize the array with the following values:
    • First element: "!";
    • Second element: "World";
    • Third element: ",";
    • Fourth element: "Hello";
    • Fifth element: " ".
  • Construct the message by arranging the elements of the array in the correct order ("Hello, world!")and then set it to the value of the message variable;
  • Output the constructed message.

Løsning

cpp

solution

Switch to desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 3. Kapittel 6
toggle bottom row

book
Working with the Array

Reminder how to access an array by index

cpp

main

copy
12345678910
#include <iostream> int main() { int myArray[3] = { 67, 23, 87 }; std::cout << myArray[0] << std::endl; std::cout << myArray[1] << std::endl; std::cout << myArray[2] << std::endl; }

Note

Index counting starts from zero, making the first element in a list or array the zeroth element.

Oppgave

Swipe to start coding

  • Declare a string array with a size of 5;
  • Initialize the array with the following values:
    • First element: "!";
    • Second element: "World";
    • Third element: ",";
    • Fourth element: "Hello";
    • Fifth element: " ".
  • Construct the message by arranging the elements of the array in the correct order ("Hello, world!")and then set it to the value of the message variable;
  • Output the constructed message.

Løsning

cpp

solution

Switch to desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 3. Kapittel 6
Switch to desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Vi beklager at noe gikk galt. Hva skjedde?
some-alt