Java Example Program to calculate student grade using the Switch Case. Findgrade.java [java] /** @author:candidjava.com @description:Program to calculate grade...
Tag - program
BACK Sample Registration Form Using Jsp index.jsp [xml] <%@ page language="java" contentType="text/html; charset=UTF-8"...
BACK Login Page Using Jsp login.jsp [xml] <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF...
BACK Find no of Hits Using Jsp Hits.jsp [xml] <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF...
BACK File Download Program Using Jsp sample.jsp [xml] <%@ page language="java" contentType="text/html; charset=UTF-8"...
BACK Image Viewer Using Jsp web.xml [xml] <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="; xmlns=";...
[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[]...