-
att
奇异吸引子,混沌吸引子,复杂系统理论,画法代码。(Strange attractor, chaotic attractor, complex systems theory, painting code.)
- 2013-12-17 13:00:27下载
- 积分:1
-
caishuzi
由电脑随机产生一个整数,让用户去猜,如果用户猜的比电脑大,则输出“大了,再小点!”,反之则输出“小了,再大点!”(An integer randomly generated by computer, allowing users to guess, if you guess more than a computer major, then the output of the "big, and then dot!", Otherwise the output is "small, then big points!")
- 2009-11-16 17:31:26下载
- 积分:1
-
QT 实现helloworld
用QT实现简单用户界面,在本文档里QT的初级学习者,可以看到里面具体的实现,不是自学,有老师教的,有机会多交流啊!
- 2023-05-04 06:15:03下载
- 积分:1
-
hash_table
hash_table的c语言的链表实现。包括一个简单的hash函数和hash_table的源码。(hash_table c language linked list implementation. Includes a simple hash function and hash_table source.)
- 2013-08-30 22:33:04下载
- 积分:1
-
udf_whj
用于模拟fluent中吸附脱附的case,其中吸附脱附过程的传热传质需要自己使用udf(Case for simulating adsorption and desorption in fluent, and the heat and mass transfer in the process of adsorption and desorption should be declared by UDF)
- 2021-01-06 20:18:53下载
- 积分:1
-
C# 通过SqlReader HasRows判断指定表中是否有数据
本例主要是判断指定的数据库数据表中是否有数据,这里使用了通过判断HasRows的返回值来判断,若返回值为真,则有数据,反之则无数据,最后用MessageBox.Show显示判断结果,完整的过程:
//实例化SqlConnection变量conn
SqlConnection conn = new SqlConnection("server=.;database=db_14;uid=sa;pwd=");
conn.Open();//打开连接
//创建一个SqlCommand对象
SqlCommand cmd = new SqlCommand("select * from " + textBox1.Text.Trim(), conn);
//使用ExecuteReade方法创建SqlDataReader对象
SqlDataReader sdr = cmd.ExecuteReader();
sdr.Read();//调用Read方法读取SqlDataReade
if (sdr.HasRows)//使用HasRows属性判断结果中是否有数据
{
MessageBox.Show("数据表中有值");//弹出提示信息
}
else
{
MessageBox.Show("数据表中没有任何数据");
}
- 2022-02-07 01:03:03下载
- 积分:1
-
Ex8_1
是一个个人资料管理的例程,将个人的一些简单资料输入便可管理(is a personal information management routines, some simple personal information management can be imported)
- 2005-04-13 12:00:25下载
- 积分:1
-
libxl_注册机
LibXl 的注册机代码,可以注册目前最新版的LibXl,使用方式 创建 BookHandle 以后,调用 xlBookSetKeyW(BookHandle , key, code)(The registration machine code of LibXl can register the latest version of LibXl, and call xlBookSetKeyW (BookHandle, key, code) after creating BookHandle.)
- 2017-12-21 09:37:29下载
- 积分:1
-
zhigongdanganguanlixitong
这 是 一 个 简 单 的 用 c++ 做 的 职 工 管 理 系 统(This is a simple c++ to do with the staff management system)
- 2011-01-20 23:08:43下载
- 积分:1
-
Calculator
基于逆波兰法的计算器程序,该计算器支持小数输入和正负数输入,支持四则运算以及指数运算,也支持括号的使用。(Reverse Polish law based calculator program, the calculator supports input and negative decimal number input, support four operations and index calculation, and also supports the use of parentheses.)
- 2013-12-01 16:35:07下载
- 积分:1