This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
A java Program in which one thread will calculate factorial and other will check primarility. | |
*/ | |
import java.util.*; | |
import java.lang.Thread; | |
class FactorialThread extends Thread{ | |
private int n; |