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

Kurssisisältö

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.

Tehtävä

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.

Ratkaisu

cpp

solution

Switch to desktopVaihda työpöytään todellista harjoitusta vartenJatka siitä, missä olet käyttämällä jotakin alla olevista vaihtoehdoista
Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 3. Luku 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.

Tehtävä

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.

Ratkaisu

cpp

solution

Switch to desktopVaihda työpöytään todellista harjoitusta vartenJatka siitä, missä olet käyttämällä jotakin alla olevista vaihtoehdoista
Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 3. Luku 6
Switch to desktopVaihda työpöytään todellista harjoitusta vartenJatka siitä, missä olet käyttämällä jotakin alla olevista vaihtoehdoista
Pahoittelemme, että jotain meni pieleen. Mitä tapahtui?
some-alt