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

Cursusinhoud

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.

Taak

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.

Oplossing

cpp

solution

Switch to desktopSchakel over naar desktop voor praktijkervaringGa verder vanaf waar je bent met een van de onderstaande opties
Was alles duidelijk?

Hoe kunnen we het verbeteren?

Bedankt voor je feedback!

Sectie 3. Hoofdstuk 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.

Taak

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.

Oplossing

cpp

solution

Switch to desktopSchakel over naar desktop voor praktijkervaringGa verder vanaf waar je bent met een van de onderstaande opties
Was alles duidelijk?

Hoe kunnen we het verbeteren?

Bedankt voor je feedback!

Sectie 3. Hoofdstuk 6
Switch to desktopSchakel over naar desktop voor praktijkervaringGa verder vanaf waar je bent met een van de onderstaande opties
Onze excuses dat er iets mis is gegaan. Wat is er gebeurd?
some-alt