This site has got programs, that u may need as an ISC student or a beginner.
These are simple console based programs that can be run and understood by anyone having the idea of basic, core Java concepts.
(java programs for beginners)
class prime { public static boolean PrimeCheck(int a)//a should be greater than 0 { for(int i=2; i<=a/2; i++) if(a%i==0) return false; return true; } }
This comment has been removed by a blog administrator.
ReplyDelete