您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. VC++ 折线图 柱状去 条形图

  2. 我自己的VC++课程设计作业。 int k=0; srand((unsigned)time(NULL)); //生成随机数 ofstream ofs("c:\\xxx.txt",ios::out); for(int j=1;j<=90;j++) //数字后面带符号 { k=rand()%200+1; a[j-1]=k; printf("%10d",k); if(j%3!=0) { ofs<<setw(4)<<k<<" ☆★☆★☆"; } else //
  3. 所属分类:C++

    • 发布日期:2009-06-24
    • 文件大小:45056
    • 提供者:mamaily119
  1. C/C++ 拳皇争霸

  2. #include #include #include #include #include #define N 100 int n=0; int Checktoseek(char name[]);//查找 void mainmenu();//菜单 void Register();//登记注册 void Showplayer();//显示当前人物数据 void Show allplayer();//显示所有人物数据 void Chooseopponent();//选择对手 void Choosep
  3. 所属分类:C++

    • 发布日期:2009-07-14
    • 文件大小:5120
    • 提供者:aass472843452
  1. 数字识别之神经网络法

  2. 数字识别之神经网络法(来自网络) /* ============================================= *\ * File: OnrDlg.cpp * * Descr iption: 主对话框头文件 * * 包括所有的函数 * \* ============================================= */ #include "stdafx.h" #in clude "Onr.h" #include "OnrDlg.h" #include #
  3. 所属分类:网络基础

    • 发布日期:2009-09-11
    • 文件大小:57344
    • 提供者:ibicc
  1. 迷宫 c++实现 控制台下的

  2. 控制台下的迷宫 void random(int x,int y){ //随机产生迷宫 srand( (unsigned)time( NULL ) ); //srand()函数产生一个以当前时间开始的随机种子 int i;int j; for(j=1;j<=y;j++){ for(i=1;i<=x;i++) mg[i][j]=rand()%2; //产生随机的0或1赋给迷宫数组 } }
  3. 所属分类:C++

    • 发布日期:2009-12-10
    • 文件大小:7168
    • 提供者:lovingsitar
  1. 猜数字小游戏-提示:程序中num将随机产生一个正整数

  2. 编写一个程序,随机产生一个正整数,让人猜这个数字,每猜一次,计算机会告诉他是大了还是小了。当猜对了,计算机将祝贺他。 提示:程序中num将随机产生一个正整数,以下是部分程序代码 #include #include #include int main(void) { int num; clrscr(); srand((unsigned)time(NULL)); num=rand(); ... }
  3. 所属分类:专业指导

    • 发布日期:2010-01-07
    • 文件大小:800
    • 提供者:baobaoyard
  1. 数据结构课程设计C语言版

  2. C语言版课程设计 #include #include 产生随机数 #include 调用计算时间的函数 #include using namespace std; 产生随机数,输入产生随机数的个数,范围,即可产生待排数据 void Random(long p[],long n,long a,long b) { long max,min; if(a>b) { max=a-b+1; min=b; } else { max=b-a+1; min=a; } srand((unsigned
  3. 所属分类:C

    • 发布日期:2010-06-25
    • 文件大小:146432
    • 提供者:laputa123
  1. 趣味取球 c++ srand应用

  2. 要求:趣味取球。已知袋中有若干黑球和白球(具体个数,键盘输入),每次从中取出两个球。如果取出的两个球为同色,则放入袋中一个白球;如取出的两个球异色,则放入袋中一个黑球。通过取出球的颜色调用两种处理函数。
  3. 所属分类:C++

    • 发布日期:2010-11-30
    • 文件大小:3072
    • 提供者:majing524
  1. 网狐棋牌游戏百变双扣游戏源码

  2. #include "StdAfx.h" #include "TableFrameSink.h" #include "cmath" ////////////////////////////////////////////////////////////////////////// //静态变量 const WORD CTableFrameSink::m_wPlayerCount=GAME_PLAYER; //游戏人数 const enStartMode CTableFrameSink::m_Ga
  3. 所属分类:C

    • 发布日期:2011-01-29
    • 文件大小:1048576
    • 提供者:ringi
  1. 仓库管理系统质量及答辩评分细则

  2. 利用结构体构造一个三层BP神经网络,并对其进行初始化,部分源代码如下所示: #define OUT_COUT 26 //输出向量维数 #define IN_COUT 35 //输入向量维数 #define COUT 10 //样本数量 typedef struct { //bp人工神经网络结构 int h; //实际使用隐层数量 double v[IN_COUT][10]; //隐藏层权矩阵i double w[10][OUT_COUT]; //输出层权矩阵 double a; //学习率 d
  3. 所属分类:其它

    • 发布日期:2011-05-21
    • 文件大小:908
    • 提供者:jiangtao5241
  1. C和C++生成指定长度的随机字符串源码

  2. 放血了自己写代码都使用这个制作随机字符串等等再配合MD5就异常强大了。。。也就是说生成的字符序列不随机,所以我们需要把srand((unsigned)time(NULL)); 从for循环中移出放在for语句前面,这样可以生成随机的字符序列,而且每次运行生成的字符序列会不同(呵呵,也有可能相同,不过出现这种情况的几率太小了)
  3. 所属分类:网络攻防

    • 发布日期:2011-09-30
    • 文件大小:71680
    • 提供者:mdjshifan
  1. 剪刀,石头,布

  2. #include #include #include #include #include using namespace std; class Game { private: int draw,loss,win; public: Game();//初始化// void qingping();//清除屏幕// void guize();//游戏规则// void start(); void output();//查看结果// }; Game::Game() { draw=0; loss=0;
  3. 所属分类:C++

    • 发布日期:2011-11-23
    • 文件大小:41984
    • 提供者:liudan001
  1. 连连看游戏代码

  2. #include #include #include #include #include using namespace std; class Game { private: int draw,loss,win; public: Game();//初始化// void qingping();//清除屏幕// void guize();//游戏规则// void start(); void output();//查看结果// }; Game::Game() { draw=0; loss=0;
  3. 所属分类:C++

    • 发布日期:2011-11-23
    • 文件大小:1024
    • 提供者:liudan001
  1. C++黑洞数字 很详细哦

  2. c++经典程序 int main() { srand((unsigned)time(NULL)); //时钟振荡产生随机数 int number = rand() % 10000; cout << "产生的随机数为: "<< number << endl; int value = blackHoleNumber(number); cout << "黑洞数为: " << value << endl; return 0; }
  3. 所属分类:C/C++

    • 发布日期:2012-03-22
    • 文件大小:2048
    • 提供者:wp492076608
  1. 遗传算法 解TSP问题

  2. srand((unsigned)time(NULL)); //最大实验次数,城市数,种群规模,最大迭代次数 int CASNUM,POINTCNT,POPSIZE,GENERATIONS; //scanf("%d",&CASNUM;);//输入实验次数 CASNUM=10;//输入实验次数 //scanf("%d%d%d",&POINTCNT;,&POPSIZE;,&GENERATIONS;);//输入染色体长度(城市数),种群规模,最大迭代步数 POINTCNT=10, POPSIZE=10
  3. 所属分类:C/C++

    • 发布日期:2012-04-28
    • 文件大小:8192
    • 提供者:longwindshine
  1. 遗传算法代码

  2. 遗传算法代码 void mutationoperator() //变异操作 { int i,j; double p; srand((unsigned) time(NULL)); //种下随机种子 for (i=0;i<popsize;i++){ for(j=0;j<chromlength;j++){ p=rand()00/1000.0; if (p<pm){ population[i].chrom[j]=(population[i].chrom[j]==0)?1:0; } }
  3. 所属分类:C++

    • 发布日期:2012-06-19
    • 文件大小:9216
    • 提供者:love060514
  1. 关于C语言----八:课外总结

  2. #include #include #include int random(int maxlim); int judgewin(char h1,char h2); void disphand(char h); void main() { char man,computer; char wantplay; //重置随机数序列 srand( (unsigned)time( NULL ) ); printf("-----------猜 拳--------------\n"); do { //您
  3. 所属分类:C

    • 发布日期:2012-07-19
    • 文件大小:184320
    • 提供者:chhubert
  1. 蛇吞苹果程序

  2. #include #include #include #include #include #define N 21 void gotoxy(int x,int y)//位置函数 {COORD pos; pos.X=2*x; pos.Y=y; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),pos); } void color(int a)//颜色函数 { SetConsoleTextAttribute(GetStdHandle(
  3. 所属分类:C++

    • 发布日期:2013-04-13
    • 文件大小:2048
    • 提供者:u010285579
  1. C语言控制台版 俄罗斯方块

  2. #include #include #include #include #include #include #include "tetris.h" int main (void) { int over = 0; int nowdir = DIR_NONE; int pause = 1; int speed = 0; int layer = 0; int score = 0; int level = 1; static PointBlock thisblock; static Poi
  3. 所属分类:C

    • 发布日期:2013-04-19
    • 文件大小:6144
    • 提供者:qq1152134972
  1. c++ATM取款

  2. ATM 的存款 取款 等 void A::ck() { int b; srand((unsigned)time(NULL)); b=100*(rand()%200+1); cout<<"存款:"<<"\n"<<"存款金额:"<<b<<endl; } void A::qk() { int c; srand((unsigned)time(NULL)); c=100*(rand()%200+1); cout<<"取款:"<
  3. 所属分类:C++

    • 发布日期:2013-06-16
    • 文件大小:1048576
    • 提供者:u011088583
  1. 实验报告范例

  2. 源代码 在Main.cpp文件中 //----------------------------------------------------------------------------- // //----------------------------------------------------------------------------- #include "CommonAPI.h" #include #include float g_fDelayTime; int g_iM
  3. 所属分类:其它

    • 发布日期:2014-08-20
    • 文件大小:3145728
    • 提供者:qaz13213626520
« 12 3 »