C++字符串的创建、输入、截取、输出。

// c++中的字符串
// 字符换常量
// 放在字符数组中,以'\0'结尾
// string 对象
#include<iostream>
#include<cstring>
// 包含字符串库函数的声明
using namespace std;
int main(){
    char title[]="Prison Break";
    // title最后一个元素是'\0'
    char hero[100]="Michael Scofield";
    char prisonName[100];
    char response[100];
    cout<<"What's the name of the prison in "<<title<<endl;
    cin>>prisonName;
    if(strcmp(prisonName,"Fox-River")==0){
        // 字符串比较函数,字典序小就是负数,字典序大就是正数
        cout<<"Yeah! Do you love"<<hero<<endl;
    }
    else{
        strcpy(response,"It seems you haven't watched it!\n");
        // 字符串拷贝函数
        cout<<response;
    }
    
    //截取字符串
    title[0]='t';
    title[3]=0;
    // 等价于 title[3]='\0';
    cout<<title<<endl;
    system("pause");
    return 0;
}
posted @ 2021-04-24 13:37  Zeker62  阅读(144)  评论(0编辑  收藏  举报