Fibonacci Series : 0 0 1 1 2 3 5 8 13 21 34 Program To Print Fibonacci Series in Java Language in two ways First is with the help of for loop and another one is with the help Read More …
Tag: Java Programming
Program to check Prime Numbers in Java (Java Code)
package flizz; /** * * @author Abhay */ public class CheckPrime { public static void main(String args[]){ int i,m=0,flag=0; int n=17;//it is the number to be checked m=n/2; for(i=2;i<=m;i++){ if(n%i==0){ System.out.println(“Number is not prime”); flag=1; break; } } if(flag==0) System.out.println(“Number Read More …