搜索资源列表
hm4
- 数字翻译问题 设有输入3个数组: String x[]={ \"one\",“two\", \"three\",four\", \"five\",\"six\",seven\",\"eight\",\"nine\"} String y[]={ten\",\"eleven\",\"twelve\",\"thirteen\",\"fourteen\",\"fifteen\", \"sixteen\",\"seventeen\",\"eighteen\",\"nineteen\" }
words
- 根据英语学习的特点,编制一款可帮助学生背英文单词的小软件,要求具有以下功能:从词库中随机抽取一个单词,显示在屏幕上时,该单词被随机隐藏了一个、或两个、或三个字母,用户正确填空后,可得分;当得分累积到某些分值时,系统给予鼓励。 单词词库可以是任何合理的形式,如数组、字符串、文件等。用户可以设置每次使用时练习的单词组。用户填空时,可以有提示信息。-According to the characteristics of English language learning, the prepara
CPP-Module-II
- Module II is the second course in the C++ Programming for Game Developers series. Recall that in Module I we started off by studying fundamental programming concepts like variables, console input and output, arrays, conditional statements, strings, l
juzhenxiangcheng
- 编写程序,可以实现m*n矩阵和n*p矩阵相乘。m,n,p均小于10,矩阵元素为整数。 分析: 首先我们可以根据题意写出函数头。可以定为void MatrixMutiply(int m,int n,int p,long lMatrix1[MAX][MAX],long lMatrix2[MAX][MAX],long lMatrixResult[MAX][MAX]),其中lMatrix1和lMatrix2分别是输入的m*n矩阵和n*p矩阵,lMatrixResult是输出的m*p矩阵。 因
game.programming.all.in.one
- 游戏开发大全-game.programming.all.in.one.pdf-Before moving to the last four operators let me explain something. When you work with arrays, the memory for each element is organized sequentially, but this doesn’t mean that each element is only a byte awa
MineSweep
- 是一个用VC6.0编制的扫雷游戏,该游戏用主要用C语言中的数组、递归来做的,实现了初级的扫雷游戏。-VC6.0 compiled a minesweeper game with, the game is mainly written in C language with arrays, recursion to do to achieve the primary game of mine.