搜索资源列表
DBGrid_DBGridEh
- 在更新前请务必备份源文件! 并且此程序对同一目录只能使用一次! 本程序对只处理了部份DbGridEh事件: StringReplace(Demo[i], TDBGrid , TDBGridEh , [rfIgnoreCase]) StringReplace(Demo[i], DataCol: Integer Column: TColumn , DataCol: Integer Column: TColumnEh , [rfIgnoreCase]) StringReplac
47
- 锁住数据库中的表 把表达式 True=False 放到表的 ValidationRule 属性就能锁上。 HardLockTable?实现了该功能。声明Public MyDB As DatabaseDim Dummy As Integer函数Function HardLockTable -locked in the database table that expression = False True decentralized form ValidationRule attributes ca
DbfFile
- 为了使用VC语言编程直接读取dbf文件。需要了解dbf文件的二进制文件格式,下面给出简要的说明。 表文件由头记录及数据记录组成。头记录定义该表的结构并包含与表相关的其他信息。头记录由文件位置 0 开始。数据记录1紧接在头记录之后(连续的字节),包含字段中实际的文本。 记录的长度(以字节为单位)等于所有字段定义的长度之和。表文件中存储整数时低位字节在前。-Programming language in order to use VC to read dbf files directly
hw10
- 大整数加法运算,先将相加的两个数转换成字符串,再相加。-Large integer addition operation, first add the two numbers into a string, and then add.
String
- 数据的表示和存储; (1.1) 累积运算的中间结果和最终的计算结果的数据类型要求是整型——这是问题本身的要求; (1.2) 试设计合适的存储结构,要求每个元素或结点最多存储数据的3位数值。 -Data representation and storage (1.1) cumulative results of operations of the intermediate and final results of the integer data type is require
PROJ-5
- 数据的表示和存储; (1.1) 累积运算的中间结果和最终的计算结果的数据类型要求是整型——这是问题本身的要求; (1.2) 试设计合适的存储结构,要求每个元素或结点最多存储数据的3位数值。 -Data representation and storage (1.1) cumulative results of operations of the intermediate and final results of the integer data type is require
Cpp1
- 数据库对元素类型为整型的顺序存储的线性表进行插入、删除和查找操作。 -Database of elements stored in the order of type integer linear table insert, delete and search operations.
12345785
- 求整数的幂。很实用的数据库,希望喜欢,望采纳-Find an integer power of two. Very useful database, hope like
shexing
- 【问题描述】 蛇形矩阵是由1开始的自然数依次排列成的一个矩阵上三角形。 【要求】 【数据输入】本题有多组数据,每组数据由一个正整数N组成。(N不大于100) 【数据输出】对于每一组数据,输出一个N行的蛇形矩阵。两组输出之间不要额外的空行。矩阵三角中同一行的数字用一个空格分开。行尾不要多余的空格。 -Descr iption serpentine matrix is started by a natural number in turn
main.cpp
- 初始有一空集,然后对这个集合共有 n 次操作,每次给定一个集合以及操作名称(并: + / 差: - / 交: *)。每个操作完成后输出当前集合所有元素(均为整数,从小到大输出)。-Initial empty set, then this collection a total of n operations, each given a set operation name (and:+/poor:-/AC:*). After each operation is complete collectio
Miracl-for-Sample
- 大整数库Miracl的简单模版,用于了解vc++下miracl的代码编程,很不错的教学资料-Large the integer library miracl the simple template used to the understanding of vc++ under miracl the code programming, very good teaching and learning materials
Addition-formulas-table
- 输入 1 个正整数 n(1≤n≤10), 输出一张 20 以内的加法口诀表. 加数与被加数都不大于 n, 分列第一行和第一列.(将加数、被加数、和放入一个二维数组中, 再输出该数组)-Enter a positive integer n (1 ≤ n ≤ 10), the output of the addition formulas within a 20 table. Addends is not greater than n, breakdown of the first row an
Sort
- 输入一个正整数n (1<n<=10),再输入n 个整数,将它们从大到小排序后输出。-Enter a positive integer n (1 <n <= 10), and then enter the n integers, they are sorted in descending output.
Averaging
- 输入一个正整数n (1<n<=10),再输入n 个整数,输出平均值(保留2 位小数)-Enter a positive integer n (1 <n <= 10), and then enter the n integers, output averages (2 decimal places)
Result-Processing
- 输入一个正整数n,再输入n 个学生的学号和数学、英语、计算机成绩,要求 (1) 计算每一个学生的平均成绩。 (2) 计算每门课程的平均成绩。 (3) 输出平均成绩最高的学生的记录。 (4) 按平均成绩从高到低输出学生的成绩单(学号、数学、英语、计算机成绩和平均成绩)-Enter a positive integer n, then n students enter school numbers and math, English, computer performance, re
SQLiteDemo
- SQLite 支持多数SQL92标准,例如:索引、限制、触发和查看支持,支持 NULL、INTEGER、REAL、TEXT 和 BLOB 数据类型,支持事务。以下是一些SQLite的简单使用。
1
- 1. 编写并测试如下函数: void Add (int a[], int m, int b[], int n) 该函数将数组b的前n个元素追加到数组a的前m个元素后,假定数组a具有至少存放m+n个元素的空间。例如,如果数组a为{22,33,44,55,66,77,88,99},数组b为{20,30,40,50,60,70,80,90},则调用Add(a,5,b,3)后,将把数组a变为{22,33,44,55,66,20,30,40}。注意数组b并没有改变,而且数组a中只需改变n个元素。
2
- 1. 编写筛选查找素数函数: void sieve(bool isPrime[], int n) 其中isPrime[n]为一个布尔型数组,n为数组大小。由于2是第一个素数,所以设置isPrime[0]和isPrime[1]的值为false,并设置其余的元素初值为true。然后对从4到n-1的每一个i,判断i是否能够被2整除,如果i能够被2整除,则设置isPrime[i]为false。对从2到n/2的每一个可能的数值重复以上处理,当操作结束时,所有值为true的isPrime[i]所对应
5
- 1. 编写一个使用指针返回类型的函数,使用该函数在字符串中搜索一个子串,并返回第一个相匹配的子串指针。该函数的原型如下: 输入为3行。第一行为两个整数,表示字符串和需要查找的子串的长度。第二行为字符串,第三行为子串。 输出见main函数。 程序的一个输入输出样例为: Enter the length of string and substring 10 5 abcdefghij defgh find substring:defghij -1. Write a
AtomicIntegerFieldUpdaterTest
- Atomic Integer Field Updater Test for Embedded Linux.