知识库

C++语言开发示例:10. 字符串类型1

2025-02-01 20:24:17 李腾 1 次阅读

strtype1.cpp

#include <iostream>
#include <string>

int main()
{
    using namespace std;
    char charr1[20];
    char charr2[20] = "jaguar";
    string str1;
    string str2 = "panther";

    cout << "Enter a kind of feline: ";
    cin >> charr1;
    cout << "Enter another kind of feline: ";
    cin >> str1;
    cout << "Here are some felines:\n";
    cout << charr1 << " " << charr2 << " "
         << str1 << " " << str2
         << endl;
    cout << "The third letter in " << charr2 << " is "
         << charr2[2] << endl;
    cout << "The third letter in " << str2 << " is "
         << str2[2] << endl;
}
转载请注明转自www.hylab.cn,原文地址:C++语言开发示例:10. 字符串类型1

评论 (0)

登录后发表评论

暂无评论,快来发表第一条评论吧!