美文网首页
4.3 读入字符串存入字符数组

4.3 读入字符串存入字符数组

作者: 壹顾倾城 | 来源:发表于2020-01-09 11:09 被阅读0次
    • 程序来源 :C++ primer plus
    • 章 节 :4.3
    • 名 称 :instr1.cpp
    • 功 能 :输出字符串
    • 开发时间 :2020-1-9
    • 版 本 :v1.0
    • 运行测试 :通过
    /********************************
     * 程序来源 :C++ primer plus
     * 章    节 :4.3
     * 名    称 :instr1.cpp
     * 功    能 :输出字符串
     * 开发时间 :2020-1-9
     * 版    本 :v1.0
     * 运行测试 :通过
     *******************************/
    #include <iostream>
    #include <cstring>
    
    using namespace std;
    
    int main() {
        const int ArSize = 20;
        
        char name[ArSize];
        char dessert[ArSize];
        
        cout << "Enter you name: \n";
        cin >> name;     //Micro mike
                         //cin以空格、回车分界,只读取一个单词后结束
                         //其他数据在缓冲区等待下一个cin 
        cout << "Enyer you favorite dessert:\n";
        cin >> dessert;   //cake pie
        cout << "I have some delicious " << dessert;
        cout << " for you," << name;
        
        return 0;
    }
    
    /**********************************
     *            程序输出            * 
     ********************************** 
    Enter you name:
    Micro bike
    Enyer you favorite dessert:
    I have some delicious bike for you,Micro
    --------------------------------
    Process exited after 8.412 seconds with return value 0
    请按任意键继续. . .
    
    **********************************/ 
    

    运行结果:

    Enter you name:
    Micro bike
    Enyer you favorite dessert:
    I have some delicious bike for you,Micro
    --------------------------------
    Process exited after 8.412 seconds with return value 0
    请按任意键继续. . .
    
    

    相关文章

      网友评论

          本文标题:4.3 读入字符串存入字符数组

          本文链接:https://www.haomeiwen.com/subject/sckyactx.html