-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
88 lines (44 loc) · 1.26 KB
/
Main.java
File metadata and controls
88 lines (44 loc) · 1.26 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
import java.util.*;
class FibonacciRunnable implements Runnable {
int count;
FibonacciRunnable(int count) {
this.count = count;
}
public void run() {
int a = 0, b = 1;
System.out.println("Fibonacci Series:");
for (int i = 1; i <= count; i++) {
System.out.print(a + " ");
int next = a + b;
a = b;
b = next;
}
System.out.println();
}
}
class EvenRunnable implements Runnable {
int start, end;
EvenRunnable(int start, int end) {
this.start = start;
this.end = end;
}
public void run() {
System.out.println("Even Numbers from " + start + " to " + end + ":");
for (int i = start; i <= end; i++) {
if (i % 2 == 0) {
System.out.print(i + " ");
}
}
System.out.println();
}
}
public class Main {
public static void main(String[] args) {
FibonacciRunnable fib = new FibonacciRunnable(10);
EvenRunnable even = new EvenRunnable(1, 20);
Thread fibThread = new Thread(fib);
Thread evenThread = new Thread(even);
fibThread.start();
evenThread.start();
}
}