-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (95 loc) · 4.31 KB
/
index.html
File metadata and controls
105 lines (95 loc) · 4.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h2>Week 1 - Wednesday</h2>
<h3>Hello, world!</h3>
<ul>
<li id="hello0">hello, world (using document write)</li>
<li id="hello1">hello, world (using alert)</li>
<li id="hello2">hello, Mike</li>
<li id="hello3">hello, #Your name#</li>
</ul>
<h3>Conditions</h3>
<ul>
<li id="conditions0">Tells user if his or her input is positive or negative (somewhat inaccurately)</li>
<li id="conditions1">Tells user if his or her input is positive or negative</li>
<li id="conditions2">Compare two numbers</li>
<li id="conditions3">Access by the age</li>
<li id="nonswitch">Assesses the size of user's input (Demonstrates use of Boolean ANDing)</li>
</ul>
<h3>Loops</h3>
<ul>
<li id="loops0">Says hello to the world in infinity way (Warning!!!)</li>
<li id="loops1">Says hello to the world ten times</li>
<li id="loops2">Prints "I'm here to help you" 7 times</li>
</ul>
<h3>Variables</h3>
<ul>
<li id="variables0">Count the loop in infinity way (Warning!!!)</li>
<li id="variables1">Swap values of 2 variables</li>
</ul>
<ul>
<li id="adder">Adder</li>
<li id="sqrt">Prints the square root of two numbers</li>
<li id="imprecision">Imprecision</li>
</ul>
<h2>Week 1 - Friday</h2>
<h3></h3>
<ul>
<li id="f2c">Converts Fahrenheit to Celsius</li>
</ul>
<h3>Switch</h3>
<ul>
<li id="switch0">Define the course</li>
<li id="switch1">Assesses the size of user's input.</li>
</ul>
<h3>Function</h3>
<ul>
<li id="function0">Print user's name (using function)</li>
<li id="function1">Says hello to everyone (using function)</li>
<li id="function2">Subtract a bit from number</li>
<li id="function3">Demands that user provide a positive integer</li>
<li id="function4">Cubes a variable</li>
</ul>
<h3>Cough!</h3>
<ul>
<li id="cough0">Coughs three times</li>
<li id="cough1">Coughs three times (loops)</li>
<li id="cough2">Coughs three times (loops + functions)</li>
<li id="cough3">Coughs three times (loops + functions + variables)</li>
<li id="cough4">Coughs three times and sneezes three times.</li>
</ul>
<h2>Week 2 - Monday</h2>
<h3>ASCII</h3>
<ul>
<li id="ascii0">Demonstrates casting from int to char.</li>
<li id="ascii1">Demonstrates casting from char to int.</li>
</ul>
<h3>Buggy</h3>
<ul>
<li id="buggy0">Can you find the bug???</li>
<li id="buggy1">Can you find the bug???</li>
</ul>
<h3>String</h3>
<ul>
<li id="string0">Demonstrates strings as arrays of chars and use of length.</li>
<li id="string1">Demonstrates error checking.</li>
</ul>
<h2>Week 2 - Wednesday</h2>
<ul>
<li id="ages">Ages people by a year - Demonstrates arrays</li>
<li id="asciimath">Calculates the addition of a char and an integer</li>
</ul>
</div>
</div>
</div>
<script src="./assets/js/main.js" type="module"></script>
</body>
</html>