搜索资源列表
VC打印机编程.txt
- 1.打印术语 cpi(characters Per Inch) 每英寸内所含的字符数,用来表示字符的大小、 间距。 cpl(Characters Per Line) 每行中所含的字符个数,用来在横向表示字符 的宽度和间距。 cps(Character Per Second):每秒所能打印的字符个数,用来表示打印机的打 印速度。当然它和打印的字符大小与笔划有关。一般以10cpi的西文字符为基准 来计算打印速度. dpi(Dot Per
matlab
- 检查字符串中是否有指出字符,并返回指出字符的个数-Check whether the string pointed out that the characters, and return to point out that the number of characters
experiment3.asm
- 计数输入字符串中字母字符,数字字符以及其它字符的个数-to get the number of letters and numbers
chuankou
- 串口接收与发送。首先定义一个数组然后发送一个字符到串口接收寄存器,当接到此标志时,发送已定义的数组。 -searles sent ant recive
Character-statistics
- 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。-Enter a line of characters, respectively, the statistics of the number of letters, spaces, numbers and other characters.
统计字符的个数
- 题目7:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 。 -Title 7: input a line of character, respectively statistics of the English letters, the blank space, digital and other character number
hbyy
- 汇编语言实验报告 题目:1、 实验方法 2、 用表格形式显示字符 3、 分类统计字符个数 4 、 查找电话号码 -Assembly language lab report topics: 1, experimental methods, tabular form display characters 3 classification statistics the number of characters, look up phone numbers
weben
- 文本编辑器,统计字符个数,请封装一个类CText, 并编写一个软件,它可以完成对任意一个文本文件的字符统计工作-Text editor, the statistics of the number of characters, the package of a class CText, and write a software, it can complete the statistical work of any of the characters of a text file
Computer-hardware-2.1
- 从键盘输入一系列字符,以回车符结束,编程统计其中非数字字符的个数。-Enter the number of characters the keyboard, with a carriage return, the number of program statistics on non-numeric characters.
jiegouyulianhe
- 在实际问题中,一组数据往往具有不同的数据类型。例如, 在学生登记表中,姓名应为字符型;学号可为整型或字符型; 年龄应为整型;性别应为字符型;成绩可为整型或实型。 显然不能用一个数组来存放这一组数据。 因为数组中各元素的类型和长度都必须一致,以便于编译系统处理。为了解决这个问题,C语言中给出了另一种构造数据类型——“结构”。 它相当于其它高级语言中的记录。-In the actual problem, a set of data tend to have different data types.
微机原理实验1:字符串匹配程序实验
- 一、实验目的 1.掌握分支程序的设计方法。 2.熟悉在PC机上建立、汇编、链接、调试和运行8086汇编程序的过程。 二、实验内容 1.比较两个字符串STRING1和STRING2所含的字符是否相同,若相同则显示‘Match’,否则显示‘No Match’。 2.修改程序,显示所比较字符的个数。