Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Introduktion til String | Variabler og Datatyper
C++ Introduction

bookIntroduktion til String

Du kan gemme tekst i variabler ved at bruge string typen. For at gøre dette skal du inkludere string biblioteket, bruge std namespace scope resolution, og erklære en variabel af string typen. Dette giver dig mulighed for at håndtere sekvenser af tegn problemfrit i dine programmer.

main.cpp

main.cpp

copy
1234567891011
#include <iostream> #include <string> int main() { // Declaring string variable std::string text = "codefinity"; // Displaying string variable std::cout << text << std::endl; }

Strings variabler kan også indeholde tal (som tekst). Det er dog vigtigt at bemærke, at mens du kan gemme tal i dette format, kan du ikke direkte udføre matematiske operationer på disse tal, mens de er gemt som strings.

main.cpp

main.cpp

copy
12345678910
#include <iostream> #include <string> int main() { std::string text = "1024"; // Displaying string variable std::cout << text << std::endl;; }

Hvis du prøver at tilføje to strengvariabler, får du en sammenkædning (det fungerer uden mellemrum). Det samme vil ske med tal – de vil ikke blive lagt sammen algebraisk.

main.cpp

main.cpp

copy
1234567891011
#include <iostream> #include <string> int main() { std::string first_part = "Hello "; //space is also a symbol std::string second_part = "World"; //displaying the sum of string variables std::cout << first_part + second_part << std::endl; }
question mark

Hvad er der galt med koden nedenfor?

Select the correct answer

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 3. Kapitel 4

Spørg AI

expand

Spørg AI

ChatGPT

Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat

Awesome!

Completion rate improved to 4

bookIntroduktion til String

Stryg for at vise menuen

Du kan gemme tekst i variabler ved at bruge string typen. For at gøre dette skal du inkludere string biblioteket, bruge std namespace scope resolution, og erklære en variabel af string typen. Dette giver dig mulighed for at håndtere sekvenser af tegn problemfrit i dine programmer.

main.cpp

main.cpp

copy
1234567891011
#include <iostream> #include <string> int main() { // Declaring string variable std::string text = "codefinity"; // Displaying string variable std::cout << text << std::endl; }

Strings variabler kan også indeholde tal (som tekst). Det er dog vigtigt at bemærke, at mens du kan gemme tal i dette format, kan du ikke direkte udføre matematiske operationer på disse tal, mens de er gemt som strings.

main.cpp

main.cpp

copy
12345678910
#include <iostream> #include <string> int main() { std::string text = "1024"; // Displaying string variable std::cout << text << std::endl;; }

Hvis du prøver at tilføje to strengvariabler, får du en sammenkædning (det fungerer uden mellemrum). Det samme vil ske med tal – de vil ikke blive lagt sammen algebraisk.

main.cpp

main.cpp

copy
1234567891011
#include <iostream> #include <string> int main() { std::string first_part = "Hello "; //space is also a symbol std::string second_part = "World"; //displaying the sum of string variables std::cout << first_part + second_part << std::endl; }
question mark

Hvad er der galt med koden nedenfor?

Select the correct answer

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 3. Kapitel 4
some-alt