C:\xampp\htdocs\test\doc_a.c
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
import java.io.*;
import java.util.*;
public class KeyboardReader
{
public static void main (String[] args) throws java.io.IOException
{
String s1;
String s2a;
double num1, num2, product;
// set up the buffered reader to read from the keyboard
BufferedReader br = new BufferedReader (new InputStreamReader (
System.in));
System.out.println ("Enter a line of input");
s1 = br.readLine();
System.out.println ("The line has " + s1.length() + " characters");
System.out.println ();
System.out.println ("Breaking the line into tokens we get:");
int numTokens = 0;
StringTokenizer st = new StringTokenizer (s1);
while (st.hasMoreTokens())
{
s2 = st.nextToken();
numTokens = numTokens + 1
System.out.println (" Token " + numTokens + " is" + ": " + s2);
}
}
}
import java.io.*;
import java.util.*;
public class KeyboardReader
{
public static void main (String[] args) throws java.io.IOException
{
String s1;
String s2;
double num1, num2, product;
// set up the buffered reader to read from the keyboard
BufferedReader br = new BufferedReader (new InputStreamReader (
System.in));
System.out.println ("Enter a line of input");
s1 = br.readLine();
System.out.println ("The line has " + s1.length() + " characters");
System.out.println ();
System.out.println ("Breaking the line into tokens we get:");
int numTokens = 0;
StringTokenizer st = new StringTokenizer (s1);
while (st.hasMoreTokens())
{
s2 = st.nextToken();
numTokens++;
System.out.println (" Token " + numTokens + " is: " + s2);
}
}
}
public class FunctionCall {
public static void funct1 () {
System.out.println ("Inside funct1");
}
public static void main (String[] args) {
int val;
System.out.println ("Inside main");
funct1();
System.out.println ("About to call funct2");
val = funct2(8);
System.out.println ("funct2 returned a value of " + val);
System.out.println ("About to call funct2 again");
val = funct2(-3);
System.out.println ("funct2 returned a value of " + val);
}
public static int funct2 (int param) {
System.out.println ("Inside funct2 with param " + param);
return param * 2;
}
}
class Point2d {
/* The X and Y coordinates of the point--instance variables */
private double x;
private double y;
private boolean debug; // A trick to help with debugging
public Point2d (double px, double py) { // Constructor
x = px;
y = py;
debug = false; // turn off debugging
}
public Point2d () { // Default constructor
this (0.0, 0.0); // Invokes 2 parameter Point2D constructor
}
// Note that a this() invocation must be the BEGINNING of
// statement body of constructor
public Point2d (Point2d pt) { // Another consructor
x = pt.getX();
y = pt.getY();
// a better method would be to replace the above code with
// this (pt.getX(), pt.getY());
// especially since the above code does not initialize the
// variable debug. This way we are reusing code that is already
// working.
}
public void dprint (String s) {
// print the debugging string only if the "debug"
// data member is true
if (debug)
System.out.println("Debug: " + s);
}
public void setDebug (boolean b) {
debug = b;
}
public void setX(double px) {
dprint ("setX(): Changing value of X from " + x + " to " + px );
x = px;
}
public double getX() {
return x;
}
public void setY(double py) {
dprint ("setY(): Changing value of Y from " + y + " to " + py );
y = py;
}
public double getY() {
return y;
}
public void setXY(double px, double py) {
setX(px);
setY(py);
}
public double distanceFrom (Point2d pt) {
double dx = Math.abs(x - pt.getX());
double dy = Math.abs(y - pt.getY());
// check out the use of dprint()
dprint ("distanceFrom(): deltaX = " + dx);
dprint ("distanceFrom(): deltaY = " + dy);
return Math.sqrt((dx * dx) + (dy * dy));
}
public double distanceFromOrigin () {
return distanceFrom (new Point2d ( ));
}
public String toStringForXY() {
String str = "(" + x + ", " + y;
return str;
}
public String toString() {
String str = toStringForXY() + ")";
return str;
}
}
class Point2d {
/* The X and Y coordinates of the point--instance variables */
private double x;
private double y;
private boolean debug; // A trick to help with debugging
public Point2d (double px, double py) { // Constructor
x = px;
y = py;
debug = false; // turn off debugging
}
public Point2d () { // Default constructor
this (0.0, 0.0); // Invokes 2 parameter Point2D constructor
}
// Note that a this() invocation must be the BEGINNING of
// statement body of constructor
public Point2d (Point2d pt) { // Another consructor
x = pt.getX();
y = pt.getY();
// a better method would be to replace the above code with
// this (pt.getX(), pt.getY());
// especially since the above code does not initialize the
// variable debug. This way we are reusing code that is already
// working.
}
public void dprint (String s) {
// print the debugging string only if the "debug"
// data member is true
if (debug)
System.out.println("Debug: " + s);
}
public void setDebug (boolean b) {
debug = b;
}
public void setX(double px) {
dprint ("setX(): Changing value of X from " + x + " to " + px );
x = px;
}
public double getX() {
return x;
}
public void setY(double py) {
dprint ("setY(): Changing value of Y from " + y + " to " + py );
y = py;
}
public double getY() {
return y;
}
public void setXY(double px, double py) {
setX(px);
setY(py);
}
public double distanceFrom (Point2d pt) {
double dx = Math.abs(x - pt.getX());
double dy = Math.abs(y - pt.getY());
// check out the use of dprint()
dprint ("distanceFrom(): deltaX = " + dx);
dprint ("distanceFrom(): deltaY = " + dy);
return Math.sqrt((dx * dx) + (dy * dy));
}
public double distanceFromOrigin () {
return distanceFrom (new Point2d ( ));
}
public String toStringForXY() {
String str = "(" + x + ", " + y;
return str;
}
public String toString() {
String str = toStringForXY() + ")";
return str;
}
}
import java.io.*;
import java.util.*;
public class MyFileReader
{
public static void main (String[] args) throws java.io.IOException
{
String s1;
String s2;
// set up the buffered reader to read from the keyboard
BufferedReader br = new BufferedReader (new FileReader ("MyFileReader.txt"));
s1 = br.readLine();
System.out.println ("The line is " + s1);
System.out.println ("The line has " + s1.length() + " characters");
System.out.println ();
System.out.println ("Breaking the line into tokens we get:");
int numTokens = 0;
StringTokenizer st = new StringTokenizer (s1);
while (st.hasMoreTokens())
{
s2 = st.nextToken();
numTokens++;
System.out.println (" Token " + numTokens + " is: " + s2);
}
}
}
import java.io.*;
// This program shows a stack track that occurs when java
// encounters a terminal error when running a program.
public class DivBy0
{
public static void funct1 ()
{
System.out.println ("Inside funct1()");
funct2();
}
public static void main (String[] args)
{
int val;
System.out.println ("Inside main()");
funct1();
}
public static void funct2 ()
{
System.out.println ("Inside function2()");
int i, j, k;
i = 10;
j = 0;
k = i/j;
}
}
public class ArrayDemo {
public static void main(String[] args) {
int[] anArray; // DECLARE an array of integers
anArray = new int[10]; // CREATE an array of integers
// assign a value to each array element
for (int i = 0; i < anArray.length; i++) {
anArray[i] = i;
}
// print a value from each array element
for (int i = 0; i < anArray.length; i++) {
System.out.print(anArray[i] + " ");
}
System.out.println();
}
}
import java.io.*;
import java.util.*;
public class KeyboardIntegerReader {
public static void main (String[] args) throws java.io.IOException {
String s1;
String s2;
int num = 0;
// set up the buffered reader to read from the keyboard
BufferedReader br = new BufferedReader (new InputStreamReader (
System.in));
boolean cont = True;
while (cont)
{
System.out.print ("Enter an integer:");
s1 = br.readLine();
StringTokenizer st = new StringTokenizer (s1);
s2 = "";
while (cont && st.hasMoreTokens())
{
try
{
s2 = st.nextToken();
num = Integer.parseInt(s2);
cont = false;
}
catch (NumberFormatException n)
{
System.out.println("The value in \"" + s2 + "\" is not an integer");
}
}
}
System.out.println ("You entered the integer: " + num);
}
}
C:\xampp\htdocs\test\doc_b.c
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
import java.io.*;
import java.util.*;
public class KeyboardReader
{
public static void main (String[] args) throws java.io.IOException
{
String s1;
String s2;
double num1, num2, product;
// set up the buffered reader to read from the keyboard
BufferedReader br = new BufferedReader (new InputStreamReader (
System.in));
System.out.println ("Enter a line of input");
s1 = br.readLine();
System.out.println ("The line has " + s1.length() + " characters");
System.out.println ();
System.out.println ("Breaking the line into tokens we get:");
int numTokens = 0;
StringTokenizer st = new StringTokenizer (s1);
while (st.hasMoreTokens())
{
s2 = st.nextToken();
numTokens++;
System.out.println (" Token " + numTokens + " is: " + s2);
}
}
}
import java.io.*;
import java.util.*;
public class KeyboardReader
{
public static void main (String[] args) throws java.io.IOException
{
String s1;
String s2;
double num1, num2, product;
// set up the buffered reader to read from the keyboard
BufferedReader br = new BufferedReader (new InputStreamReader (
System.in));
System.out.println ("Enter a line of input");
s1 = br.readLine();
System.out.println ("The line has " + s1.length() + " characters");
System.out.println ();
System.out.println ("Breaking the line into tokens we get:");
int numTokens = 0;
StringTokenizer st = new StringTokenizer (s1);
while (st.hasMoreTokens())
{
s2 = st.nextToken();
numTokens++;
System.out.println (" Token " + numTokens + " is: " + s2);
}
}
}
public class FunctionCall {
public static void funct1 () {
System.out.println ("Inside funct1");
}
public static void main (String[] args) {
int val;
System.out.println ("Inside main");
funct1();
System.out.println ("About to call funct2");
val = funct2(8);
System.out.println ("funct2 returned a value of " + val);
System.out.println ("About to call funct2 again");
val = funct2(-3);
System.out.println ("funct2 returned a value of " + val);
}
public static int funct2 (int param) {
System.out.println ("Inside funct2 with param " + param);
return param * 2;
}
}
class Point2d {
/* The X and Y coordinates of the point--instance variables */
private double x;
private double y;
private boolean debug; // A trick to help with debugging
public Point2d (double px, double py) { // Constructor
x = px;
y = py;
debug = false; // turn off debugging
}
public Point2d () { // Default constructor
this (0.0, 0.0); // Invokes 2 parameter Point2D constructor
}
// Note that a this() invocation must be the BEGINNING of
// statement body of constructor
public Point2d (Point2d pt) { // Another consructor
x = pt.getX();
y = pt.getY();
// a better method would be to replace the above code with
// this (pt.getX(), pt.getY());
// especially since the above code does not initialize the
// variable debug. This way we are reusing code that is already
// working.
}
public void dprint (String s) {
// print the debugging string only if the "debug"
// data member is true
if (debug)
System.out.println("Debug: " + s);
}
public void setDebug (boolean b) {
debug = b;
}
public void setX(double px) {
dprint ("setX(): Changing value of X from " + x + " to " + px );
x = px;
}
public double getX() {
return x;
}
public void setY(double py) {
dprint ("setY(): Changing value of Y from " + y + " to " + py );
y = py;
}
public double getY() {
return y;
}
public void setXY(double px, double py) {
setX(px);
setY(py);
}
public double distanceFrom (Point2d pt) {
double dx = Math.abs(x - pt.getX());
double dy = Math.abs(y - pt.getY());
// check out the use of dprint()
dprint ("distanceFrom(): deltaX = " + dx);
dprint ("distanceFrom(): deltaY = " + dy);
return Math.sqrt((dx * dx) + (dy * dy));
}
public double distanceFromOrigin () {
return distanceFrom (new Point2d ( ));
}
public String toStringForXY() {
String str = "(" + x + ", " + y;
return str;
}
public String toString() {
String str = toStringForXY() + ")";
return str;
}
}
import java.io.*;
import java.util.*;
public class MyFileReader
{
public static void main (String[] args) throws java.io.IOException
{
String s1;
String s2;
// set up the buffered reader to read from the keyboard
BufferedReader br = new BufferedReader (new FileReader ("MyFileReader.txt"));
s1 = br.readLine();
System.out.println ("The line is " + s1);
System.out.println ("The line has " + s1.length() + " characters");
System.out.println ();
System.out.println ("Breaking the line into tokens we get:");
int numTokens = 0;
StringTokenizer st = new StringTokenizer (s1);
while (st.hasMoreTokens())
{
s2 = st.nextToken();
numTokens++;
System.out.println (" Token " + numTokens + " is: " + s2);
}
}
}
import java.io.*;
// This program shows a stack track that occurs when java
// encounters a terminal error when running a program.
public class DivBy0
{
public static void funct1 ()
{
System.out.println ("Inside funct1()");
funct2();
}
public static void main (String[] args)
{
int val;
System.out.println ("Inside main()");
funct1();
}
public static void funct2 ()
{
System.out.println ("Inside funct2()");
int i, j, k;
i = 10;
j = 0;
k = i/j;
}
}
public class ArrayDemo {
public static void main(String[] args) {
int[] anArray; // DECLARE an array of integers
anArray = new int[10]; // CREATE an array of integers
// assign a value to each array element
for (int i = 0; i < anArray.length; i++) {
anArray[i] = i;
}
// print a value from each array element
for (int i = 0; i < anArray.length; i++) {
System.out.print(anArray[i] + " ");
}
System.out.println();
}
}
import java.io.*;
import java.util.*;
public class KeyboardIntegerReader {
public static void main (String[] args) throws java.io.IOException {
String s1;
String s2;
int num = 0;
// set up the buffered reader to read from the keyboard
BufferedReader br = new BufferedReader (new InputStreamReader (
System.in));
boolean cont = true;
while (cont)
{
System.out.print ("Enter an integer:");
s1 = br.readLine();
StringTokenizer st = new StringTokenizer (s1);
s2 = "";
while (cont && st.hasMoreTokens())
{
try
{
s2 = st.nextToken();
num = Integer.parseInt(s2);
cont = false;
}
catch (NumberFormatException n)
{
System.out.println("The value in \"" + s2 + "\" is not an integer");
}
}
}
System.out.println ("You entered the integer: " + num);
}
}
Number of differences: 5
Added(0,0)
Deleted(89,2)
Changed(5)
Changed in changed(4)
Generated on October 31, 2013, 4:23 PM by ExamDiff Pro 6.0.3.12.