码迷,mamicode.com
首页 > 编程语言 > 详细

c++程序—字符串

时间:2020-02-25 10:03:42      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:return   nbsp   hello   stream   har   clu   name   namespace   space   

  1. C风格字符串:char 变量名[ ]="字符串值 "
int main()
{
    
    char str[] = "hello world!";
    cout << str << endl;


    system("pause");
    return 0;

}

  2. C++风格的字符串:string 变量名 = “字符串值”

  • NB:要加一个头文件:
    #include<string>
#include<iostream>
using namespace std;
#include<string>

int main()
{
    
    string str = "hello world!";
    cout << str << endl;
    system("pause");
    return 0;

}

 

c++程序—字符串

标签:return   nbsp   hello   stream   har   clu   name   namespace   space   

原文地址:https://www.cnblogs.com/hackerteen/p/12359966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!