搜索结果

找到约 699 项符合 Int 的查询结果

按分类筛选

显示更多分类

Jsp/Servlet public class month1{ public static void main(String [] args){ int month = 10 int days = 0 s

public class month1{ public static void main(String [] args){ int month = 10 int days = 0 switch(month){ case 1: days = 31 case 2: days = 28 case 3: days = 31
https://www.eeworm.com/dl/696/443821.html
下载: 101
查看: 1084

单片机开发 ATMEGA16单片机INT0 INT1中断嵌套实验

ATMEGA16单片机INT0 INT1中断嵌套实验
https://www.eeworm.com/dl/648/467746.html
下载: 146
查看: 1084

数学计算 矩阵运算的算法 用Type类数组创建矩阵对象 matrix(int rows,int cols) //创建矩阵,值为0 matrix(int n) //创建单位阵 matrix(c

矩阵运算的算法 用Type类数组创建矩阵对象 matrix(int rows,int cols) //创建矩阵,值为0 matrix(int n) //创建单位阵 matrix(const matrix &) //拷贝构造函数 BOOL Ismatrixf(){ return (rows==cols) } //判断矩阵是否为方阵 modifyrowscols(int rows,int cols) //修改矩阵的行列数 ~matrix() {delete []elems } ...
https://www.eeworm.com/dl/641/175274.html
下载: 149
查看: 1086

VC书籍 VC之改变控件的大小和位置 用CWnd类的函数MoveWindow()或SetWindowPos()可以改变控件的大小和位置。 void MoveWindow(int x,int y,int

VC之改变控件的大小和位置 用CWnd类的函数MoveWindow()或SetWindowPos()可以改变控件的大小和位置。 void MoveWindow(int x,int y,int nWidth,int nHeight) void MoveWindow(LPCRECT lpRect) 第一种用法需给出控件新的坐标和宽度、高度; 第二种用法给出存放位置的CRect对象; 例: ...
https://www.eeworm.com/dl/686/325759.html
下载: 167
查看: 1069

单片机编程 PAM2862 1A LED Driver with Int

The PAM2862 is a continuous mode inductivestep-down converter, designed for driving singleor multiple series connected LEDs efficientlyfrom a voltage source higher than the LEDvoltage. The device operates from an inputupply between 6V and 30V and provides anexternally adjustable output current of up ...
https://www.eeworm.com/dl/502/30962.html
下载: 64
查看: 1078

加密解密 在图像中加入某个分数值(int)

在图像中加入某个分数值(int),然后检测这个分数,要求在图像受到攻击时能有效(100%)提取这个值
https://www.eeworm.com/dl/519/225803.html
下载: 156
查看: 1053

文章/文档 int 10h 介绍系统功能调用

int 10h 介绍系统功能调用
https://www.eeworm.com/dl/652/392117.html
下载: 144
查看: 1069

技术资料 INT0中断控制LED

INT0中断控制LED包含proteus仿真文件
https://www.eeworm.com/dl/961123.html
下载: 10
查看: 4809

Java编程 (1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols

(1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols,矩阵数据数组double data[][],构造方法Matrix()、Matrix(int rows,int cols)、Matrix(int rows,int cols,double data[][]),获取某元素值的方法getData(int row,int col),设置某元素值的方法setData(int row,int col,double value),计算 ...
https://www.eeworm.com/dl/633/334949.html
下载: 184
查看: 1143

数据结构 void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >=

void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } step++ board[i][j]=step if (step == Size*Size) { showboard() system("PAUSE") return } //DFS Knight(i-2,j-1) //left Knight(i-2,j+1) Knight(i+2,j-1) //right ...
https://www.eeworm.com/dl/654/393662.html
下载: 130
查看: 1083