| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 699 人关注过本帖
标题:一个可编译无法运行的程序,请教????????????????
取消只看楼主 加入收藏
houenxun
Rank: 1
等 级:新手上路
帖 子:24
专家分:0
注 册:2007-12-30
结帖率:100%
收藏
 问题点数:0 回复次数:0 
一个可编译无法运行的程序,请教????????????????
#include <iostream.h>
int iShudoNum=0;
class Shudo{
private:
    int iRow;
    int iList;
    int iId;
    int iData[9][9];
public:
    Shudo()
    {
        iShudoNum++;
        iRow=9;
        iList=9;
        for(int i=0;i<9;i++)
            for(int j=0;j<9;j++)
                cin>>iData[i][j];
        iId=iShudoNum;
        cout<<"The number"<<iId<<"shudo has been created";

    }

    ~Shudo()
    {
        cout<<"The "<<iId<<"has been reclaimed!"<<endl;

    }
    bool judge()
    {
         for(int i=0;i<9;i++)
            for(int j=0;i<j;j++)
                for(int k=j+1;k<9;k++)
                    if(iData[i][j]==iData[i][k]||iData[j][i]==iData[k][i])
                        return false;
        return true;
    }
    void output()
    {
        for(int i=0;i<9;i++)
            for(int j=0;j<9;j++)
            {
                cout<<iData[i][j];
                if (j==8)
                    cout<<endl;
            }
    }
};
void main()
{
    bool judgement;
    Shudo myShudo;
    judgement=myShudo.judge();
    if (judgement==true)
        myShudo.output();
    else
        cout<<"The shudo has not been created creactly!"<<endl;

}
搜索更多相关主题的帖子: int 编译 iId 
2008-03-21 16:13
快速回复:一个可编译无法运行的程序,请教????????????????
数据加载中...
 
   



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

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