代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/267642/4264437
java constants.java
package cn.com.zzrd.easy.bass;
/**
系统名:物流系统
功能概要: Constants
完成者:
完成日:
*/
public class Constants {
/** 最大记录数 */
public static final int MAX_RECORD_NUMBER = 3;
/** EXCE
www.eeworm.com/read/156159/5612247
java pagelist.java
package com.easyjf.bbs.business;
import java.util.List;
/**
* 多页查询列表
* @author 蔡世友
*
*/
public class PageList {
private int rowCount;//记录数
private int pages;//总页数
private int curre
www.eeworm.com/read/393250/8302233
txt 3.15.txt
//只可存size-1个数!!!!!
Status InitStack(TwoWayStack &tws, int size)
{
tws.size=size;
tws.elem=(SElemType *)malloc(size*sizeof(SElemType));
tws.top[0]=0;
tws.top[
www.eeworm.com/read/392840/8322932
sqc cardnum.sqc
/*******************************************************
** 源码文件名称 : cardnum.SQC
** 所属子系统 : 卡管理
** 功能描述 : 对客户持卡数的检查处理
** 当前文件版本 : 4.0.0.0
** 作 者 : UCCB ALex
** 版本创建日
www.eeworm.com/read/392270/8353566
bas 插值.bas
Attribute VB_Name = "SimpleBase"
Option Explicit
'拟合数据数应小于32767
Function Omi2(x As Double) As Double
Dim p As Double
Dim a As Double, b As Double
p = Abs(x)
If p < 1.5 Then
a = 1.5 - p
www.eeworm.com/read/268708/11124749
cpp main.cpp
#include
#include
#define N 5 //数为5
struct jiadian //定义结构体
{ char mingcheng[20];
int shu;
char zhonglei[30];
int bianhao;
char changjia[10];
int jiage;
};
void
www.eeworm.com/read/268460/11138306
c mi.c
#include
#define M 40
int N;
struct Pro
{
int num,time;
};
int Input(int m,Pro p[M])
{
printf("Please input the actual page amount:");//输入实际页面数
do
{
scanf("%d",&m);