[java] /** @Author:Candid @description:Math Example program for loglp(double x) */ public class Math { public static void main(String args[]) { double x=4;...
Tag - Java
[java] /*java program for Division of a number*/ /** *@author:Candidjava.com *@Description:To calculate the Division of two number using Division operator */...
[java] /*java program for multiplication of a numbers*/ /** *@author:Candidjava.com *@Description:To calculate the multiples of two number using muliple...
[java] /* Program for pass by value*/ /** *@author:Candidjava.com *@Description: passing values to method */ public class form { String name; int age; String...
[java] /*To find the area of triangle*/ /** *@author:Candidjava.com *@Description:To calculate area of trianlge */ public class Area { public static void...
[java] /*program to find whether the given number is odd or even*/ /** @author:candidjava.com @Description: check the given number to know whether it is odd or...
[java] /* java program for Fibnacci series*/ /** *@author:Candidjava.com *@Description:Program for find the Fibonacci series of a given number */ public class...
[java] /** *@author:Candidjava.com *@Description: To check a Given number is palindrome or not */ public class Palindrome { public static void main(String[]...