-
这是一个用面向对象方法实现多项式四则运算的源程序,算法高效,用到很多数据结构。压缩包里面只是源程序文件,在vc中运行并由地定额的改动...
这是一个用面向对象方法实现多项式四则运算的源程序,算法高效,用到很多数据结构。压缩包里面只是源程序文件,在vc中运行并由地定额的改动-This is an object-oriented method polynomial four Operational source, efficient algorithm that uses a lot of data structure. Compressed only source files inside the vc to run fixed by the changes
- 2023-08-11 20:40:03下载
- 积分:1
-
图形绘制源代码,可以动态绘制正选曲线图形。
图形绘制源代码,可以动态绘制正选曲线图形。-Rendering the source code, you can draw are selected curves dynamic graphics.
- 2022-01-26 07:30:27下载
- 积分:1
-
上面的代码开始于建立窗口和CStatic。然后建立一CFont类型对象。...
上面的代码开始于建立窗口和CStatic。然后建立一CFont类型对象。-Above began in the establishment of the code window and CStatic. Then the establishment of one type CFont object.
- 2022-01-28 10:44:25下载
- 积分:1
-
production URL (XHyperLink), the cursor after brightening, clicking on the link...
利用Static控件制作URL连接(XHyperLink),光标经过变亮,点击连接URL。-production URL (XHyperLink), the cursor after brightening, clicking on the link URL.
- 2022-08-13 06:25:25下载
- 积分:1
-
JAVA实用工具组件,在编程序可以方便的使用,节约编程时间
JAVA实用工具组件,在编程序可以方便的使用,节约编程时间-JAVA practical tool components can be programmed in easy-to-use, saving programming time
- 2022-01-26 02:53:51下载
- 积分:1
-
仓库管理系统源代码,可以对仓库物品入库,出库,审核,带报表功能,可以对操作员,管理员进行权限管理...
仓库管理系统源代码,可以对仓库物品入库,出库,审核,带报表功能,可以对操作员,管理员进行权限管理-Warehouse management system source code, can goods storage warehouse, a database, auditing, with statements of function, can operators, administrator rights management
- 2023-03-28 16:35:04下载
- 积分:1
-
该代码提供了一个很好的曲线显示控件,可以使用鼠标对曲线上点进行拖动修改。...
该代码提供了一个很好的曲线显示控件,可以使用鼠标对曲线上点进行拖动修改。-The code provides a good curve shows controls, you can use the right mouse curve points Drive changes.
- 2022-05-07 07:51:52下载
- 积分:1
-
不错的药房管理系统,拥有完善的管理查询功能 值得看看哦!...
不错的药房管理系统,拥有完善的管理查询功能 值得看看哦!-good pharmacy management system, it has a good management of the inquiry should look at oh!
- 2022-03-23 23:47:15下载
- 积分:1
-
很漂亮的文字和背景StaticFader.EXE是基于对话框的很不错还有可变颜色的字体功能很强...
很漂亮的文字和背景StaticFader.EXE是基于对话框的很不错还有可变颜色的字体功能很强-very flowery language and background StaticFader.EXE dialog is based on the variable there are very good color and the size of a strong function
- 2022-02-25 15:32:18下载
- 积分:1
-
public class Server extends Thread { Client client int counter public Server(Cli...
public class Server extends Thread { Client client int counter public Server(Client _client) { this.client = _client this.counter = 0 } public void run() { while (counter < 10) { this.client.queue.addElement(new Integer(counter)) counter++ } throw new RuntimeException("counter >= 10") } public static void main(String[] args) { Client c = new Client() Server s = new Server(c) c.start() s.start() } } class Client extends Thread { Vector queue public Client() { this.queue = new Vector() } public void run() { while (true) { if (! (queue.size() == 0)) { processNextElement() } } } private void processNextElement() { Object next = queue.elementAt(0) queue.removeElementAt(0) System.out.println(next)-public class Server extends Thread { Client client int counter public Server(Client _client) { this.client = _client this.counter = 0 } public void run() { while (counter lt; 10) { this.client.queue.addElement(new Integer(counter)) counter++ } throw new RuntimeException("counter gt;= 10") } p
- 2022-02-21 05:44:37下载
- 积分:1