Java Example Program to swap numbers without using third or temp variable [java] /* java program for swapping of two numbers without using third variable*/ /**...
Tag - Java Example
Java Example Program to calculate student grade using the Switch Case. Findgrade.java [java] /** @author:candidjava.com @description:Program to calculate grade...
[java] /** @Author:Candid @description:Math Example program for loglp(double x) */ public class Math { public static void main(String args[]) { double x=4;...
[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] /** @author:candidjava.com @description:Program to display Numbers from 1 to N using While Loop */ public class displaynumbers { public static void...
[java] /** *@author:Candidjava.com *@Discription: collact the student marks and find the average of marks */ public class Avg { public static void...
[java] /** *@author:Candidjava.com *@discription: sum of first N numbers */ public class Sum { public static void main(String[] args) { int n = 10; int sum =...
[java] /** @author:candidjava.com @description:program to display odd numbers between 1 to 100 */ public class odd { public static void main(String org[]) {...
[java] /* Program for odd numbers*/ /** *@author:Candidjava.com *@Description: To check a given number is Odd */ public class Odd { public static void...
[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[]...