.

Friday, 27 March 2015

Address Book program in JAVA

package addressbook; public class AddressBook // This class defines an address book, consisting of 10 parts { // Class constant final String PUNCT = ", "; // Punctuation for formatting // Instance variable String...
Read more ...

Program to do circle operations in JAVA

import java.text.*; public class Circle {   public static void main (String[] args)   {     // create decimal format     DecimalFormat DF = new DecimalFormat ("0.00000");    ...
Read more ...

Program to generate MARKSHEET in JAVA

import java.util.Scanner; class Marksheet { public static void main(String[] arg) { Scanner sc=new Scanner(System.in); System.out.println("\nWel come to marks sheet"); System.out.print("Enter the name of Student \t:\t"); String...
Read more ...

Metric conversion program in JAVA

import java.util.Scanner; class conversion  {  static float dollartorupees()    {  Scanner sc=new Scanner(System.in);      System.out.println("enter the dollar");     float...
Read more ...

Calculator program in JAVA using if else statements

import java.util.Scanner; public class calculator { int c; public void add() { Scanner sc =new Scanner(System.in); System.out.println("enter first no."); int a=sc.nextInt(); System.out.println("enter second no. "); int...
Read more ...

Small shopping project in JAVA

import java.util.Scanner; class Product { Scanner sc=new Scanner(System.in); int ProductID; String ProductName, ProductType; float ProductPrice; Product() { System.out.print("Enter the Product ID = "); ProductID=sc.nextInt(); System.out.print("Enter...
Read more ...

Matrix addition program in JAVA

import java.util.Scanner; class addm {  public static void main(String[] arg)  {   int i,j;  int a[][]=new int[3][3];  Scanner sc=new Scanner(System.in);  for(i=0;i<3;i++)  {  ...
Read more ...
Pages (4)1234 Next