-
超大整型数据的加减乘C实现
本程序主要是针对超大整型数据的基础加、减、乘运算,运算位数可达10000位,同时也支持使用者进行修改扩展至更大位数
- 2023-08-28 18:15:03下载
- 积分:1
-
tinytimv_tiny2Ok_20190414
说明: HST PSF simulaiton codes.
- 2019-04-27 09:27:14下载
- 积分:1
-
c++N皇后问题,基于easyx图形库的结果显示
一种N皇后问题搜索的C++实现,运行结果可用图形直观的展现出来,基于easyx图形库,简单易学。
- 2022-12-30 05:45:03下载
- 积分:1
-
exe嵌入(嵌套)的最傻瓜方案
如果你想不做额外的工作使用一个现成的exe文件而且不在乎他是x64还是x86平台,那么恭喜你,找对了!这个方案使用了一个优秀免费的控件(比较难找到的),一两句代码初始一下,好了,完美!
- 2022-12-31 17:25:04下载
- 积分:1
-
aoyun
asp.net c# html access,企业网站装饰行业。(asp.net c# html access)
- 2015-04-15 16:21:22下载
- 积分:1
-
C程序设计语言
本书是由C语言的设计者Brian W. Kernighan和Dennis M. Ritchie编写的一部介绍标准C语言及其程序设计方法的权wei性经典著作。全面、系统地讲述了C语言的各个特性及程序设计的基本方法,包括基本概念、类型和表达式、控制流、函数与程序结构、指针与数组、结构、输入与输出、UNIX系统接口、标准库等内容。(This book is written by Brian W. Kernighan and Dennis M. Ritchie, the designers of C language. It is a classic authoritative work introducing standard C language and its programming methods. This paper comprehensively and systematically describes the characteristics of C language and the basic methods of program design, including basic concepts, types and expressions, control flow, function and program structure, pointer and array, structure, input and output, UNIX system interface, standard library and so on.)
- 2020-06-18 03:40:01下载
- 积分:1
-
OCP-HPCA_2010
Open Core Protocol ( OCP ) TEXAS-Instrument(Open Core Protocol ( OCP ) TEXAS-Instrument)
- 2014-02-23 23:38:35下载
- 积分:1
-
卫星天线伺服载台恐吓之
卫星天线载台伺服控制,基于载台两轴伺服载台控制,用的步进电机加编码器,陀螺仪测得两轴的角度,根据角度控制电机的转动,是载台在水平位置,用定时器产生正反脉冲,电机运行。
- 2022-03-21 12:23:28下载
- 积分:1
-
chatPCandCE
基于EVC在WINCE5.0下的聊天室源码(EVC under the WINCE5.0 based chat room source code
)
- 2013-10-17 09:26:34下载
- 积分:1
-
C# 显示DataGridView控件中选定的单元格、行和列
Visual C#显示选择的DataGridView单元格,获取DataGridView控件中选定的单元格、行和列,测试前请连接好数据库,实现此功能核心代码如下:
if (customersDataGridView.AreAllCellsSelected(true))
{
MessageBox.Show("所有单元格已经被选择!", "信息提示",MessageBoxButtons.OK);
}
else
{
System.Text.StringBuilder MyInfo =new System.Text.StringBuilder();
for (int i = 0;
i < MyCount; i++)
{
MyInfo.Append("行号: ");
MyInfo.Append(customersDataGridView.SelectedCells[i].RowIndex.ToString());
MyInfo.Append(", 列号: ");
MyInfo.Append(customersDataGridView.SelectedCells[i].ColumnIndex.ToString());
MyInfo.Append(", 单元格值: ");
MyInfo.Append(customersDataGridView.SelectedCells[i].Value.ToString());
MyInfo.Append(Environment.NewLine);
}
MyInfo.Append("一共选择了: " + MyCount.ToString()+"个单元格");
MessageBox.Show(MyInfo.ToString(), "信息提示", MessageBoxButtons.OK);
}
- 2022-03-18 13:11:05下载
- 积分:1