Captain: Sharmin
111506
bu4035
class notes
Today's topic
Please incorporate p757 in your system.
Search Program:
<input name="inputVal" type="text">
inputname="search" type="button"value="tosearch"
You should have Table in the book. extend it such as way that all the table look a like. except the content.
| chap1 | |
| chap2 | |
| chap3 | |
| chap4 |
<TABLE BORDER=1>
<TR>
<TD>Apple</TD>
<TD>Banana</TD>
</TR>
<TR>
<TD>Lettuce</TD>
<TD>Tomato</TD>
</TR>
</TABLE></CENTER><BR>
| Apple | Banana |
| Lettuce | Tomato |
| chap1 |
Chapter 1 The Evolution of Computer Programming and Languages |
| chap2 |
Chapter 2 Input, Process, Output (IPO) |
| chap3 |
Chapter 3 Loop: Doing it Over and Over |
| chap4 |
Chapter 4 Decision Making: Making Programs Intelligent |
| chap5 |
Chapter 5 Array: Arrangement of Data |
| chap6 |
Chapter 6 Function: Organizing the Program |
| chap7 |
Chapter 7 Structure: Putting Related Items Together |
| chap8 |
Chapter 8 Object and Class: Everything as an Object of a Class |
| chap9 |
Chapter 9 File Handling: A Database |
| chap10 |
Chapter 10 Recursion: Function Calling Itself |
| chap11 |
Chapter 11 Sorting Algorithms and Analysis |
| chap12 |
Chapter 12 Searching: To Look and to Find |
| chap13 |
Chapter 13 Address, Pointer Variable, Dynamic Memory Allocation |
| chap14 |
Chapter 14 Data Structures |
| chap15 |
Chapter 15 Polymorphism, Template, and ADT |
| chap16 |
Chapter 16 Inheritance: Reusability and Extendability |
chap17 |
Chapter 17 Character Manipulations, String Class, and iostream |
| chap18 |
Chapter 18 Standard Template Library |
| chap19 |
Chapter 19 Errors, Exception Handling, and Software Engineering |
| chap20 |
Chapter 20 Potpourri |
Allyson's demo


http://www.w3schools.com/tags/tag_div.asp

Keith's Idea:
Creating a table within a table:
|
|
http://www.architecture.yale.edu/872a/processingExamples/aggregateMultiColor/index.html
http://www.architecture.yale.edu/872a/

Random image
rnd.today=new Date();
rnd.seed=rnd.today.getTime();
function rnd() {
rnd.seed = (rnd.seed*9301+49297) % 233280;
return rnd.seed/(233280.0);
};
function rand(number) {
return Math.ceil(rnd()*number);
};