C++入门学习(十二)字符串类型

上一节(C++入门学习(十一)字符型-CSDN博客)中我们学到如何表示和使用一个字符串,本篇文章是字符串(多个字符)。

定义字符串主要有两种方式:

第一种:

char str[] = "win";  //char 变量名[] = "字符串"

第二种:

#include

string str1 = "winner"; / /

两种方式代码:

#include   
#include 
using namespace std;
  
int main() {  
    char str[] = "win"; 
    string str1 = "winner";
    cout<

C++入门学习(十二)字符串类型_第1张图片

 注意字符串使用的是双引号

你可能感兴趣的:(C++入门,学习)