标题:初学C++,请问这个哪个地方错了?对string类不是很了解。。。
只看楼主
Xy_betray
Rank: 2
来 自:河南
等 级:论坛游民
帖 子:22
专家分:12
注 册:2012-9-18
结帖率:33.33%
 问题点数:0 回复次数:2 
初学C++,请问这个哪个地方错了?对string类不是很了解。。。
#include<iostream>
#include<string.h>
struct Candybar
{
    string pp;
    double zhl;
    int hl;
};


int main()
{
    using namespace std;
    Candybar snake={"mocha munch",2.3,350};
    cout << snake.pp << endl;
    cout << snake.zhl << endl;
    cout << snake.hl << endl;
    return 0;
}
搜索更多相关主题的帖子: 350 include double 
2012-10-02 22:36
lz1091914999
Rank: 14Rank: 14Rank: 14Rank: 14
来 自:四川
等 级:贵宾
威 望:37
帖 子:2011
专家分:5959
注 册:2010-11-1
得分:0 
#include<string> 不是 #include<string.h>

My life is brilliant
2012-10-02 23:14
zhaojigao
Rank: 2
等 级:论坛游民
威 望:1
帖 子:19
专家分:59
注 册:2012-9-6
得分:0 
#include<iostream>
 struct Candybar
 {
     char pp[30];
     double zhl;
     int hl;
 };
 

int main()
 {
     using namespace std;
     Candybar snake={"mocha munch",2.3,350};
     cout << snake.pp << endl;
     cout << snake.zhl << endl;
     cout << snake.hl << endl;
     return 0;
 }


试试这样的吧
2012-10-03 16:01



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-382464-1-1.html




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

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