| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 4178 人关注过本帖
标题:有疑问??
取消只看楼主 加入收藏
winnie96
Rank: 2
等 级:论坛游民
帖 子:51
专家分:86
注 册:2015-12-14
结帖率:53.85%
收藏
已结贴  问题点数:10 回复次数:1 
有疑问??
#include<iostream>
#include<stdlib.h>
#include<time.h>
using namespace std;


class Play
{
private:
    char pai1;
    char pai2;
    char pai3;
public:
    Play():pai1(0),pai2(0),pai3(0){}
    void Set(int a, int b, int c=0)
    {
        pai1=a; pai2=b;pai3=c;
    }
    void Show()
    {
        cout<<pai1<<" "<<pai2<<" "<<pai3<<endl;
    }
     friend void Table(const Play &pl1,const Play &pl2,const Play &pl3,const Play &plz);
};
void swap(int &a,int &b)
{
    int tem;
    tem=a;  a=b;  b=tem;
}
void Xcards(int a[],int n)      
{
    srand((unsigned)time(NULL));
    for(int i=n-1;i>0;i--)
    {
        int num=rand()%(i+1);
        if(num!=i)
            swap(a[num],a[i]);
        else
        {
            do
            {
                num=rand()%(i+1);
            }while(num!=i);
            swap(a[num],a[i]);
        }
    }
}
void Table( Play pl1, Play pl2, Play pl3,Play plz);


 

int main()
{
   
    int a[]={1,2,3,4,5,6,7,8,9,10,10,10,10,1,2,3,4,5,6,7,8,9,10,10,10,10,
        1,2,3,4,5,6,7,8,9,10,10,10,10,1,2,3,4,5,6,7,8,9,10,10,10,10};

    class Play p1;
    class Play p2;
    class Play p3;
    class Play z;
    Xcards(a,52);       洗牌
    Table(p1,p2,p3,z);    显示桌面
    int t=0;
    p1.Set(a[t],a[t+1]);      //分牌

    t=+2;
    p2.Set(a[t],a[t+1]);
    t=+2;
    p3.Set(a[t],a[t+1]);
    t=+2;
    z.Set(a[t],a[t+1]);
    Table(p1,p2,p3,z);        显示桌面
    return 0;
}
void Table(Play pl1, Play pl2, Play pl3,Play plz)
{
    cout<<"庄家:"<<plz.Show()<<endl;     //有问题,。
    cout<<"玩家1:"<<pl1.Show()<<endl;
    cout<<"玩家2:"<<pl2.Show()<<endl;
    cout<<"玩家3:"<<pl3.Show()<<endl;
}

[此贴子已经被作者于2016-3-26 21:12编辑过]

搜索更多相关主题的帖子: include private public friend 
2016-03-26 20:08
winnie96
Rank: 2
等 级:论坛游民
帖 子:51
专家分:86
注 册:2015-12-14
收藏
得分:0 
大神些,帮帮我嘛!!
2016-03-27 20:14
快速回复:有疑问??
数据加载中...
 
   



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

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