Skip to content

Commit 0e5fc39

Browse files
Initial commit
1 parent b601a44 commit 0e5fc39

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/**
2+
*
3+
*/
4+
package extendsthread;
5+
/**
6+
* @author M.NAVEEN
7+
RANDOM CODER'S
8+
*
9+
*/
10+
public class demo3 extends Thread
11+
{
12+
13+
public demo3()
14+
{
15+
16+
}
17+
public void run()
18+
{
19+
for(int i=1;i<=100;i++)
20+
System.out.println(i);
21+
}
22+
23+
public static void main(String[] args)
24+
{
25+
new demo3().start();
26+
new demo3().start();
27+
28+
}
29+
30+
}

0 commit comments

Comments
 (0)