搜索资源列表
word
- 设有一批英文单词存放在一个数组中,编制一个图形界面程序浏览单词。在界面中安排一个标签显示单词,另有“上一个”、“下一个”两个按钮实现单词的前后翻动。
WordMainClass
- 随机显示一组能构成英文单词的字母,记录用户移动字母次数的功能,在移动过程和移动结束构成正确单词后,显示移动字母的次数
CountWords.rar
- 实现英文文本出现英文单词的频率的统计,十分好用,jlsjlfff
zh
- 将一组英文单词或者句子中的小写装换成大写, 除去每个单词的第一个字母要大写。。其它的不要大写-A group of English words or phrases in lower case into upper case mounted
dictionary
- 基于swing的英文单词查询与测试小程序,使用NetBeans,SqlServer开发,供大家学习交流,数据库附件中只有表结构,请自行添加单词 作者:sostrong-Swing based on the English word query and testing of small procedures, the use of NetBeans, SqlServer development, for them to learn from the exchange Author: sostr
TextStats
- 英文单词排序 统计频率 并在右侧显示出来(输入和排列同步进行)-English word order statistics, frequency
EnglishOCR
- 使用Java编写的OCR程序,可以识别带有复杂背景的图片上的英文单词,识别率很高。-OCR program written using Java, you can identify the picture with a complex background of English words, recognition rate is high.
Calender2
- 读入一个TXT文本(仅有英文单词序列组成),统计各个单词出现的次数,并以适当的图形形式表示结果。-Read into a TXT text (the only English word sequence composition), statistics the number of occurrences of each word, and the appropriate graphical representation of results.
Java_3
- 文本B01.txt:创建带有标签和文本框的窗体。当用户在文本框中输入其姓名后按回车,显示欢迎用户使用 java 编程的消息。例如用户输入姓名 flyhorse ,则显示消息“你好, flyhorse, 欢迎你使用 java 编程!”,并能*正常关闭窗口。 文本TB.txt:在Applet界面中安排一个文本框和一个标签,在文本框输入一个整数按回车后, 在标签中显示该数最高位数字。 文本Equation.txt)设计一个界面程序求一元二次方程的根 文本splitTest.txt:输入
Java_3
- 文本B01.txt:创建带有标签和文本框的窗体。当用户在文本框中输入其姓名后按回车,显示欢迎用户使用 java 编程的消息。例如用户输入姓名 flyhorse ,则显示消息“你好, flyhorse, 欢迎你使用 java 编程!”,并能*正常关闭窗口。 文本TB.txt:在Applet界面中安排一个文本框和一个标签,在文本框输入一个整数按回车后, 在标签中显示该数最高位数字。 文本Equation.txt)设计一个界面程序求一元二次方程的根 文本splitTest.txt:输入
Dictionary
- 一个简单英汉词典!,可以查询英文单词或中文单词的意思!-A simple English-Chinese dictionary! You can check English words or Chinese word meaning!
shiyan63
- 一个java实现的窗体小程序,通关键盘事件,来操作英文单词-it is a good program, i hope you can use it
caizi
- 手机屏幕中显示一个5*5字母矩阵,玩家左右上下移动方向键,使矩阵中每纵列的5个字母都能拼成一个英文单词。- mobile phone screen shows a 5* 5 alphabet matrix, game player about moving up and down arrow keys, so that the matrix of each column of 5 letters to spell a word in english.
mytxt
- 读入一个TXT文本(仅有英文单词序列组成),统计各个单词出现的次数,并以适当的图形形式表示结果。-Into a TXT text to read (the only English word sequences), statistics, the number of occurrences of each word, and the appropriate forms of graphical results.
JAVA
- 读入一个TXT文本(仅有英文单词序列组成),统计各个单词出现的次数,并以适当的图形形式表示结果。-Reading into a TXT text ( only the English word sequence composition ), count the number of times each word appears, and with appropriate graphics representation of results.
text2
- 读入一个TXT文本(仅有英文单词序列组成),统计各个单词出现的次数,并以适当的图形形式表示结果。-Reads a TXT (only English word sequences), statistical occurrences of each word, and an appropriate graphical representation of the results.
dic_ec
- 实现了 字典的程序,可以输入英文单词,查询到对应的英文单词的属性,并返回控制台显示-Achieve a dictionary program, you can enter a word, the query to the corresponding English word attributes, and return to the console display
Word
- 编写一个java应用程序,要求如下: (1)程序可以读取一个由英文单词组成的文本文件,该文件中的英文单词以空格、逗号、回车符分隔 (2) 窗体上有两个按钮、一个文本框和一个文本区,单击“下一个单词”按钮,可以把读取的下一个单词读到文本框中。 (3)在文本框中输入单词的前几个字符,单击“查找”按钮,可以把所有符合要求的单词显示在文本区中。-Write a java application requirements are as follows: (1) program can be r
CheckWords
- 英文单词拼写纠错 该用例使用到再种算法,第一种是用到了用单词前缀树解决多串的模式匹配问题的算法。第二个是用到了单词树的深度遍历下的回溯法进行最优值求解。-English word spelling correction
英文句子翻转
- 将一个英文语句以单词为单位逆序排放。例如“I am a boy”,逆序排放后为“boy a am I” 所有单词之间用一个空格隔开,语句中除了英文字母外,不再包含其他字符 接口说明 /** * 反转句子 * * @param sentence 原句子 * @return 反转后的句子 */ public String reverse(String sentence); 输入描述: 将一个英文语句以单词为单位逆序排放。