Plz can any one help me for Multiplication Table. How i make this table in java. i want to make 1 to 10 tables in TABLES.
actualy i want that when i open a page, an alert box appeared, when i write 5 or 6 , 7 or something. and press enter. the shows like that. 5 x 1 = 5 5 x 2 = 10 5 x 3 = 15 complete table like that and second or another page i want when i write 5 or something the result shows like that 5 x 4 x 3 x 2 x 1 = (Answer) . I thimk this called victorial or vactoria? Plz help me i want to write with javascript
var number = prompt("Number:"); for (var i = 1; i <= 10; i++) { document.write(number + " x " + i + " = " + (number * i) + "<br/>"); } Code (markup): Input validation and other customizations are up to you.
thanks to help for table. plz check this & help second or another page i want when i write 5 or something the result shows like that 5 x 4 x 3 x 2 x 1 = (Answer) . I thimk this called victorial or vactoria? Plz help me i want to write with javascript