| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 575 人关注过本帖
标题:各位大神,帮忙看看这程序错在哪
只看楼主 加入收藏
张堪绘
Rank: 1
等 级:新手上路
帖 子:15
专家分:6
注 册:2013-4-13
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:1 
各位大神,帮忙看看这程序错在哪
#include<iostream>
using namespace std;
class Stock{
public:
    Stock(char na[],int q=1000,char p=8.98);
    void print()
    {cout<<"\nthis="<<this<<"stockcode,quan,price"<<this->stockcode,quan,price;}
private:
    char stockcode;
    int quan;
    double price;};
int main()
{Stock stock1(600001,3000.5.67);Stock stock2(600001);
stock1.print();

stock2.print();

return 0;}
搜索更多相关主题的帖子: namespace public 
2013-04-20 22:01
yuccn
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:何方
等 级:版主
威 望:167
帖 子:6815
专家分:42393
注 册:2010-12-16
收藏
得分:20 
#include<iostream>
using namespace std;
class Stock{
public:
    Stock(char na[],int q=1000,double p=8.98){quan =q;price=p;strcpy(stockcode, na);};
    void print()
    {cout<<"\nthis="<<(int)this<<"stockcode,quan,price"<<this->stockcode<<quan<<price;}
private:
    char stockcode[128];
    int quan;
    double price;};
    int main()
    {Stock stock1("600001",3000,5.67);Stock stock2("600001");
    stock1.print();
    stock2.print();
    return 0;}

我行我乐
公众号:逻辑客栈
我的博客:
https://blog.yuccn. net
2013-04-21 09:39
快速回复:各位大神,帮忙看看这程序错在哪
数据加载中...
 
   



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

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