
09-07-2007, 03:59
|
|
|
|
חבר מתאריך: 17.11.04
הודעות: 54
|
|
|
Help
Write a HTML page containing JavaScript that asks the user to enter an integer number.
Your program should then display the 10 times table for that number. For example, if the
user enters 8, your program should display:
The multiplication table for 8 is:
1 x 8 = 8
2 x 8 = 16
3 x 8 = 24
4 x 8 = 32
5 x 8 = 40
6 x 8 = 48
7 x 8 = 56
8 x 8 = 64
9 x 8 = 72
10 x 8 = 80
|