-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathscript.js
More file actions
117 lines (105 loc) · 2.01 KB
/
script.js
File metadata and controls
117 lines (105 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
" use strict ";
var display = document.getElementById("display");
function oneToTen()
{
display.innerHTML= "***Output**<br>";
for(i =1; i < 11; i++)
{
display.innerHTML+= i;
display.innerHTML += "<br>";
}
}
function oddNumbers()
{
display.innerHTML= "***Output**<br>";
for(i =1; i < 20; i++)
{
display.innerHTML+= i;
display.innerHTML += "<br>";
i++;
}
}
function squares()
{
display.innerHTML= "***Output**<br>";
for(i =1; i < 11; i++)
{
display.innerHTML+= i*i;
display.innerHTML += "<br>";
}
}
function random4()
{
display.innerHTML= "***Output**<br>";
for(i =1; i < 5; i++)
{
display.innerHTML+= Math.floor((Math.random() * 100) + 1);;
display.innerHTML += "<br>";
}
}
function even(num)
{
display.innerHTML= "***Output**<br>";
for(i =2; i < num; i++)
{
display.innerHTML+=i;
display.innerHTML += "<br>";
i++;
}
}
function powers(num)
{
display.innerHTML= "***Output**<br>";
for(i =1; i <= num; i++)
{
display.innerHTML+=Math.pow(2,i);
display.innerHTML += "<br>";
}
}
function areWeThereYet()
{
var there = "quit";
display.innerHTML= "***Output**<br>";
while(there != "yes")
{
there = prompt("areWeThereYet?")
display.innerHTML= "areWeThereYet?<br>";
}
display.innerHTML= "Good<br>";
}
function triangle()
{
display.innerHTML= "***Output**<br>";
for(i = 1; i < 7; i++)
{
for(j = 1; j < i; j++)
{
display.innerHTML+="*";
}
display.innerHTML+="<br>";
}
}
function tableSquare()
{
display.innerHTML= "***Output**<br>A4x4tablesquare<br>";
for(i = 1; i < 5; i++)
{
for(j = 1; j < 5; j++)
{
display.innerHTML+=" | " +i*j;
}
display.innerHTML+=" |<br>";
}
}
function tableSquares(num)
{
display.innerHTML= "***Output**<br>A"+num+"x"+num+"tablesquare<br>";
for(i = 1; i < num+1; i++)
{
for(j = 1; j < num+1; j++)
{
display.innerHTML+=" | " +i*j;
}
display.innerHTML+=" |<br>";
}
}