代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/313900/3640646
cpp p4-197.cpp
#include
#include
#include
using namespace std;
//返回一个Fibonacci数,其由generate_n()算法调用
int Fibonacci1(void)
{
static int r;
static int f1 = 0;
sta
www.eeworm.com/read/306303/3740398
txt 1114.txt
日月光华 -- Database精华区文章阅读
--------------------------------------------------------------------------------
发信人: dbman (dibo), 信区: DB
标 题: 数据库基本研究内容
发信站: BBS of FDU (Tue May 14 09:27:37 1996)
数
www.eeworm.com/read/303776/3807403
m yj8.m
%定义遗传算法参数
Dim=20; %变量维数
NIND=20; %个体数目(Number of individuals)
Preci=20; %变量的二进制位数(Precision of variables)
MAXGEN=100; %最大遗传代数(Maximum number of ge
www.eeworm.com/read/303776/3807406
m yj2.m
%定义遗传算法参数
NIND=40; %个体数目(Numbe of individuals)
MAXGEN=500; %最大遗传代数(Maximum number of generations)
NVAR=20; %变量的维数
PRECI=20; %变量的二进制位数(Precision
www.eeworm.com/read/292520/3952342
cs 3-2.cs
//程序3-2
using System;
class InOutConv
{
static void Main(string[] args)
{ string strPrint,strTemp;
double dFirst,dSum;
int iSecond, iSum;
//简单的输入方式
Console.WriteLine("输入一个数,按回车:
www.eeworm.com/read/289051/3996341
java guessnumber.java
package com.bean;
public class GuessNumber
{ int answer=0, //实际答案。
guessNumber=0, //客户猜测的数。
guessCount=0; //客户猜到正确答案之前所用的次数。
String result=null;
public void setAnswer(int n)