-
高斯消元法求解线性方程组,fortran源代码编辑
高斯消元法求解线性方程组,fortran源代码编辑-gauss eliminate to solve lineare quation
- 2023-08-20 07:40:04下载
- 积分:1
-
该源码是一个万年历程序,具有汉字提示,界面良好,
该源码是一个万年历程序,具有汉字提示,界面良好,-The source is a calendar program, with Chinese characters suggest that a good interface,
- 2022-05-25 14:45:44下载
- 积分:1
-
类似OICQ的局域网通信使用TCP协议,使用Winsock控件,可以发送文件
类似OICQ的局域网通信,采用TCP协议,利用winsock,可以传文件-similar OICQ LAN communications using TCP, using winsock, can send documents
- 2023-04-06 04:15:04下载
- 积分:1
-
如何使用DocX 库在 .DOCX 文件中替换一列单词
翻译 maninwest@Codeforge 作者:B. Clay Shannon@Codeproject使用 DocX 库替换 .docx 文件中的字任务我想替换英式英语的拼写为美式口语。例如, 替换 "colour" 为 "color", "centre" 为 "center", "plough" 为"plow", 等。我可以使用查找>替换来一个一个地替换,但是很麻烦。所以,我找到一个库 。为了使用这个 docx库,只需从 这里 下载(docx.dll)。在你的项目中添加到它的引用,然后添加此 using子句:using Novacode;
首先需要加载具有”错误"拼写的文档:string filename = string.Empty;
DialogResult result = openFileDialog1.ShowDialog();
if (result == DialogResult.OK)
{
filename = openFileDialog1.FileName;
}
else
{
MessageBox.Show("No file selected - hasta la vista and Ciao, baby!");
return;
}
using (DocX document = DocX.Load(filename))
{
document.ReplaceText("travelled", "traveled");
document.Save();
}
我们当然想以此完成所有词汇替换。首先,我们需要有一列单词,这样编码: 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-01-25 21:24:19下载
- 积分:1
-
酒店管理系统
这是为您的企业提供的酒店管理系统。只需单击即可跟踪所有事务。此应用程序由visualbasic.Net开发
- 2022-07-13 13:31:57下载
- 积分:1
-
ShareView VC++
// Standard initialization
// If you are not using these fea...
ShareView VC++
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need.-ShareView VC++
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need.
- 2022-12-11 11:25:03下载
- 积分:1
-
这时一个EJB网络书店销售的好程序,大家有机会可以下载下来研究...
这时一个EJB网络书店销售的好程序,大家有机会可以下载下来研究-EJB network when a good bookstore sales procedures, we have a chance to study can be downloaded from
- 2022-05-06 23:15:25下载
- 积分:1
-
用C语言编写的中国剩余定理的算法输入方程,数…
使用c语言实现的中国剩余定理算法
首先输入方程数目,在分组 每次两个数值输入!-use the C Language Chinese Remainder Theorem algorithm input equation, the number of a numerical input for each two!
- 2023-02-14 06:30:04下载
- 积分:1
-
* 工程名称:SmartCar
* 功能描述:结合飞思卡尔16位单片机MC9S12DG128B完成小车自动寻迹,沿黑线行驶功能
* IDE环境: M...
* 工程名称:SmartCar
* 功能描述:结合飞思卡尔16位单片机MC9S12DG128B完成小车自动寻迹,沿黑线行驶功能
* IDE环境: Metrowerks CodeWarrior 4.1
* 组成文件:
* main.c
* SmartCar.c/PID.c/LCD1620.c/Test.c
-* Project Name: SmartCar* Functional Description: combination of Freescale" s 16-bit single-chip automatic car MC9S12DG128B completed tracing along the black lane* IDE environment features: Metrowerks CodeWarrior 4.1* constituent documents:* main.c* SmartCar.c/PID.c/LCD1620.c/Test.c, etc. ~ ~ ~
- 2023-06-13 00:20:03下载
- 积分:1
-
KNN邻近算法
使用python语言实现k-邻近算法,他的工作原理为:存在一个样本数据集合,并且样本集中每个数据都存在标签,输入没有标签的新数据后,将新数据的每个特征与样本集中数据对应的特征进行比较,然后使用该算法提取与样本集中特征最相近的数据的分类标签。
- 2022-05-18 04:28:36下载
- 积分:1