登录
首页 » C#,c# » 打印机驱动源码

打印机驱动源码

于 2022-02-09 发布 文件大小:15.31 kB
0 110
下载积分: 2 下载次数: 1

代码说明:

这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用这个转载来的,仅供学习之用

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • SI4463射频模块STM32应用
    stm32f103Cbt6 单片机   操作SI4463 无线射频模块数据发送接收 通过SPI接口操作SI4463的数据读写
    2022-03-18 18:57:32下载
    积分:1
  • 无线传感器网络
    1.拿到板子后,肯定是要测试下通信功能,默认代码里面有程序的。 只要上电就可以测试2个板子相互发送数据测试。视频在网页里面就可以看到。 2.学习从 1 ZigBee简介和学习方法.pdf 开始 和 2.Zigbee开发平台的构建.pdf 3.认真学习开发 从 zigbee开发板代码及其教程1.基础篇-CC2530实验代码教程1、CC2530 流水灯实验 开始 每个代码都有相应的PDF讲解。 4.下载程序时,要复位仿真器。
    2022-06-16 21:51:21下载
    积分:1
  • c#编写的PING工具
    c#编写的PING工具-prepared by the PING tools
    2022-02-02 06:09:05下载
    积分:1
  • WPF模仿360界面
    模仿360界面风格,实现了页面切换,还有换肤功能,界面看上去还行
    2022-01-25 18:05:03下载
    积分:1
  • 冒泡法是数据排序的一种基本算法,它的基本方法是:相邻两元素进行比较,如有需要则进行交换,每完成一次循环就将最小元素排在最后(如从大到小排序),下一次循环是将其他...
    冒泡法是数据排序的一种基本算法,它的基本方法是:相邻两元素进行比较,如有需要则进行交换,每完成一次循环就将最小元素排在最后(如从大到小排序),下一次循环是将其他的数进行类似操作?如将N 个数按从大到小排序,Turbo C语言程序函数 -Bubble Act to sort the data is a basic algorithm, which is the basic method : two adjacent elements, if required for the exchange, each completed a minimum cycle will be the last element (for example, on average ranking), the next cycle is the number of other similar operations such as N on average number sequencing by, Turbo C Programming Language Functions
    2022-01-26 18:16:12下载
    积分:1
  • TMS320F28335的实例入门程序
    TMS320F28335的示例入门程序,可以通过 此学习怎样创建TMS的工程,怎么开始添加代码
    2022-01-23 10:40:20下载
    积分:1
  • 邮件应用程序
    这是一封邮件发送应用程序在 c 锋利享受它 !
    2022-07-24 13:42:43下载
    积分:1
  • 1-2 实系数复变多项式问题« 编程任务:给定阶数分别为n和m的实系数复变多项式f(x) 和g(x),以及复数z,计算f (z) / g(z)的值。« 数据输入:由文件input.txt 给出输入数据。第一行有2 个正整数g(x) 的阶数。接下来的2行,每行分别有n和m个实数数。最后一行的2 个实数分别表示复数z 的实部和虚部。« 结果输出:将计算出的f (z) / g(z)的值输出到文件output.txt。文件的第一行是计算得到的复数,保留6 位有效数字。注意输出的结果应该符合数学中手写习惯。例如,当复数z 的实部和虚部分别为2 和1 时,应该输出2+i,而不是2+1i。输入文件示例 输出文件示例input.txt output.txt2 11 2 32 23.5 0.5-1-2 polynomial coefficients complex issues laquo; Programming tasks : to set the order of n and m is the coefficient of complex polynomials f (x) and g (x), and the plural z, calculated f (z)/g (z) values. Laquo; Data input : from the document input.txt given input data. The first trip had two positive integers g (x) of the Order. The next two firms, each trip respectively n and m really count. The last line of the two real plural z respectively, said the real and imaginary parts. Laquo; Results output : to calculate the f (z)/g (z) the value of the output to a file output.txt. The document is the first line of the complex calculat
    2022-03-07 09:43:46下载
    积分:1
  • 【问题描述】 设有n个人围坐在圆桌周围,现从某个位置m(1≤m≤n)上的人开始报数,报数到k的人就站出来。下一个人,即原来的第k+1个位置上的人,又从1开始报数...
    【问题描述】 设有n个人围坐在圆桌周围,现从某个位置m(1≤m≤n)上的人开始报数,报数到k的人就站出来。下一个人,即原来的第k+1个位置上的人,又从1开始报数,再报数到k的人站出来。依此重复下去,直到全部的人都站出来为止。试设计一个程序求出出列序列。 这是一个使用循环链表的经典问题。因为要不断地出列,采用链表的存储形式能更好地模拟出列的情况。-[n-- with the individuals sitting around the round table is from a certain location m (1 m n) of people reported the number of reported number of people who have come out. Next individuals, that the original clause k a position who reportedly started from a few, and reported that the number of people who come forward. Accordingly continue to repeat until all of the people come out so far. Test procedures designed sought out a sequence out. This is a use of recycled Chain classic problem. Due to the constant up and be using the storage form of Chain better simulate down.
    2022-07-01 15:37:34下载
    积分:1
  • Qt人机交互界面设计
    最主要的是在串口的描述,本文主要是在qt中串口的编写,分为读写两部分,本文不得转载和分享
    2022-01-26 01:25:44下载
    积分:1
  • 696516资源总数
  • 106658会员总数
  • 16今日下载