文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>c++类的学习

c++类的学习

时间:2011-06-08  来源:hut-u~p

#include<iostream>
#include<stdlib.h>
#include<string>
#include<time.h>
using namespace std;
class Array
{
  public:
     void set();
     void show();
     void find();
     void allshow();
  private:
     int max;
     int array[1000];
};

void Array::set() 
{
   int i;
   srand(time(NULL));
   for( i=0 ;i < 100 ;i++)
      array[i]=rand()%1000;
}
void Array::find()
{
    max=array[0];
    int i;
    for( i=1 ;i < 100; i++)
      if(array[i]>max)
      max=array[i];
}
void Array::show()
{
   cout<<"the max number is:\n"<<max;
   puts("");
}
void Array::allshow()
{
    int i;
    for(i=0;i<100;i++)
     {
      cout<<array[i]<<" ";
      if(i%10==0&&i!=0)
        puts("");
     }
     puts("");
}
int main( )
{
    class Array t;
    t.set();
    t.find();
    t.allshow();
    t.show();
    system("pause");
    return 0;
}
相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载