forked from OpenDSA/OpenPOP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercise1withJava.html
More file actions
50 lines (39 loc) · 1.8 KB
/
Exercise1withJava.html
File metadata and controls
50 lines (39 loc) · 1.8 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0">
<title>Assess your code Editor</title>
<style>
.jsavcanvas { height: 500px; }
</style>
<link rel="stylesheet" href="http://algoviz.org/OpenDSA/JSAV/css/JSAV.css" type="text/css" media="screen" title="no title" charset="utf-8" />
<link rel="stylesheet" href="http://algoviz.org/OpenDSA/JSAV/css/JSAV.css" type="text/css" />
<link rel="stylesheet" href="http://algoviz.org/OpenDSA/lib/odsaAV-min.css" type="text/css" />
</head>
<body>
<div id="studentCode" style="text-align:center;">
<h1 >Processing Editor</h1>
<h4 >Add appropriate lines of code to the following function skeleton so that it make method calls on the List ADT to
create the following list: <br /> "<7 5 | 17 3 >" <br /> You should assume that L is passed to the function as an empty list. <br />
</h4>
<textarea cols="130" rows="20" id="studentCodeTextArea" >
void exercise1(List L) {
// Your code goes between these lines
// Your code goes between these lines
}
</textarea>
<br />
<button onclick="assess();" style="align:center;">Assess my Code</button>
<br />
</div>
<script src="http://algoviz.org/OpenDSA/lib/jquery.min.js"></script>
<script src="http://algoviz.org/OpenDSA/lib/jquery-ui.min.js"></script>
<script src="http://algoviz.org/OpenDSA/JSAV/lib/jquery.transform.light.js"></script>
<script src="http://algoviz.org/OpenDSA/JSAV/lib/raphael.js"></script>
<script src="http://algoviz.org/OpenDSA/JSAV/build/JSAV-min.js"></script>
<script src="Exercise1withJava.js"></script>
</body>
</html>