| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 459 人关注过本帖, 1 人收藏
标题:20位的数组,为什么输出是27(31)呢?
取消只看楼主 加入收藏
lxfeng1988
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2013-8-4
结帖率:100%
收藏(1)
已结贴  问题点数:16 回复次数:1 
20位的数组,为什么输出是27(31)呢?
程序清单:
//strtype4.cpp--line input
#include<iostream>
#include<string>  //make string class available
#include<cstring>  //C-style string library
int main()
{
    using namespace std;
    char charr[20];
    string str;
    cout<<"Length of string in charr before input: "
        <<strlen(charr)<<endl;
    cout<<"Length of string in str before input: "
        <<str.size()<<endl;
    cout<<"Enter a line of text:\n";
    cin.getline(charr,20);  //indicate maximum length
    cout<<"You entered: "<<charr<<endl;
    cout<<"Enter another line of text:\n";
    getline(cin,str);  //cin now an argument;no length specifier
    cout<<"Length of string in charr after input: "
        <<strlen(charr)<<endl;
    cout<<"Length of string in str after input: "
        <<str.size()<<endl;
    return 0;
}
请问输出结果“Length of string in charr before input”是什么(我觉得应该是20)呢?
书上给出的结果是27
而我敲进编译器给出的结果是31
求大神指导!!!
搜索更多相关主题的帖子: available indicate include before Enter 
2014-01-01 11:53
lxfeng1988
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2013-8-4
收藏
得分:0 
回复 2楼 yuccn
明白了,谢谢。
2014-01-03 08:57
快速回复:20位的数组,为什么输出是27(31)呢?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016376 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved