Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML
 
 
Hot Web Programming Job

 

Tutorial Categories: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML


 

Java Tutorials

Core Java
JSP
Servlet
JDBC
Hibernate
Struts 1
Struts 2
JSF
Spring
J2EE
J2ME
Web Services
Ajax
Dojo
MySQL
Latest Comments
Contents are not d
Please Use JAVA no
hidden tag in orku
Getting good knowl
Why the output on
  All Comments...
 

 

 
Struts Tutorials
*Stuts TOC
*Apache Struts Introduction
* Struts Controller
* Struts Action Class
* Struts ActionFrom Class
* Using Struts HTML Tags
*Struts Validator Framework    
*Client Side Address Validation    
*Struts Tiles
*tiles-defs.xml
*Struts DynaActionForm
*Struts File Upload
*Struts DataSource
*AGGREGATING ACTIONS
*Internationalization
Struts Resources
*Struts Books
*Struts Articles
*Struts Frameworks
*Struts IDE
*Struts Alternative
*Struts Links
*Struts Presentations
*Struts Projects
*Struts Software
*Struts Reference
*Struts Resources
*Other Struts Tutorial
Visit Forum! Post Questions!
Jobs At RoseIndia.net!

Have tutorials?
Add your tutorial to our Java Resource and get tons of hits.

We offer free hosting for your tutorials. and exposure for thousands of readers. drop a mail
roseindia_net@yahoo.com
 
   

 
Join For Newsletter

Powered by groups.yahoo.com
Visit Group! Post Questions!

Java Notes

Examples - Method and loop review

The examples in this program are intended for reviewing methods and loops.

  1 
  2 
  3 
  4 
  5 
  6 
  7 
  8 
  9 
 10 
 11 
 12 
 13 
 14 
 15 
 16 
 17 
 18 
 19 
 20 
 21 
 22 
 23 
 24 
 25 
 26 
 27 
 28 
 29 
 30 
 31 
 32 
 33 
 34 
 35 
 36 
 37 
 38 
 39 
 40 
 41 
 42 
 43 
 44 
 45 
 46 
 47 
 48 
 49 
 50 
 51 
 52 
 53 
 54 
 55 
 56 
 57 
 58 
 59 
 60 
 61 
 62 
 63 
 64 
 65 
 66 
 67 
 68 
 69 
 70 
 71 
 72 
 73 
 74 
 75 
 76 
 77 
 78 
 79 
 80 
 81 
 82 
 83 
 84 
 85 
 86 
 87 
 88 
 89 
 90 
 91 
 92 
 93 
 94 
 95 
 96 
 97 
 98 
 99 
100 
101 
102 
103 
104 
105 
106 
107 
108 
109 
110 
111 
112 
113 
114 
115 
116 
117 
118 
119 
120 
// SampleMethods.java -- Shows loop examples inside methods.
// Author:  Fred Swartz - 2005 Dec 11

import javax.swing.*;
import java.util.*;

public class SampleMethods {
    
    //======================================================= primeFactor
    // Returns a factor of n, or 0 if n is prime.
    // Uses simple algorithm of dividing by all numbers up to n.
    // Could improve efficiency many ways.
    public static int primeFactor(int n) {
        for (int divisor = 2; divisor < n; divisor++) {
            if ((n % divisor) == 0) {
                return divisor;  // Divisible implies not prime!
            }
        }
        return 0;  // Must be prime if nothing was able to divide it.
    }
    
    //======================================================= countVowels
    // Or could use substring, ||, switch, nested for loops, ...
    public static int countVowels(String text) {
        int vowelCount = 0;
        for (int pos = 0; pos < text.length(); pos++) {
            if ("aeiouAEIOU".indexOf(text.charAt(pos)) >= 0) {
                vowelCount++;
            }
        }
        return vowelCount;
    }
    
    //========================================================= summation
    // Returns sum off all numbers from 1 to n.
    // Uses loop instead of just returning (n * (n+1)) / 2
    public static int summation(int n) {
        int sum = 0;
        for (int i = 1; i <= n; i++) {
            sum += i;
        }
        return sum;
    }
    
    //========================================================== reverse
    // Reverse string.  Should use StringBuilder for efficiency.
    public static String reverse(String s) {
        String rev = "";
        for (int pos = 0; pos < s.length(); pos++) {
            rev = s.substring(pos, pos+1) + rev;
        }
        return rev;
    }
    
    //================================================= readAndAddDialog
    public static int readAndAddDialog() {
        int sum = 0;
        while (true) {  // Loop until Cancel or close box clicked.
            String input = JOptionPane.showInputDialog(null, "Input");
            if (input == null) {
                break;  //***************************** EXIT LOOP
            }
            int num = Integer.parseInt(input);
            sum += num;
        }
        return sum;
    }
    
    //================================================= readAndAddScanner
    public static int readAndAddScanner() {
        Scanner in = new Scanner(System.in);
        int sum = 0;
        System.out.println("Enter numbers to sum.  Non-number terminates.");
        while (in.hasNextInt()) {  // Loop until no integer
            int num = in.nextInt();
            sum += num;
        }
        return sum;
    }
    
    //=============================================================== main
    public static void main(String[] args) {
        assert primeFactor(2) == 0 : "primeFactor(2)";
        assert primeFactor(4) != 0 : " primeFactor(4)";
        assert primeFactor(112) != 0 : "primeFactor(112)";
        assert primeFactor(113) == 0 : "primeFactor(113)";
        
        assert countVowels("") == 0 : "countVowels(\"\")";
        assert countVowels("a") == 1 : "countVowels(\"a\")";
        assert countVowels("e") == 1 : "countVowels(\"e\")";
        assert countVowels("i") == 1 : "countVowels(\"i\")";
        assert countVowels("o") == 1 : "countVowels(\"o\")";
        assert countVowels("u") == 1 : "countVowels(\"u\")";
        assert countVowels("A") == 1 : "countVowels(\"A\")";
        assert countVowels("E") == 1 : "countVowels(\"E\")";
        assert countVowels("I") == 1 : "countVowels(\"I\")";
        assert countVowels("O") == 1 : "countVowels(\"O\")";
        assert countVowels("U") == 1 : "countVowels(\"U\")";
        assert countVowels("x") == 0 : "countVowels(\"x\")";
        assert countVowels("x") == 0 : "countVowels(\"x\")";
        assert countVowels("nw s th tm fr...") == 0 : "countVowels(\"nw s th tm fr..\")";
        assert countVowels("now is the time for...") == 6 : "countVowels(\"now is the time for...\")";
        
        assert summation(1) == 1  : "summation(1)";
        assert summation(2) == 3  : "summation(2)";
        assert summation(3) == 6  : "summation(3)";
        assert summation(4) == 10 : "summation(4)";
        
        assert reverse("").equals("") : "reverse(\"\")";
        assert reverse("a").equals("a") : "reverse(\"a\")";
        assert reverse("ab").equals("ba") : "reverse(\"ab\")";
        assert reverse("abc").equals("cba") : "reverse(\"abc\")";
        
        int r1 = readAndAddDialog();
        JOptionPane.showMessageDialog(null, "Sum is " + r1);
        
        int r2 = readAndAddScanner();
        System.out.println("Sum is " + r2);
    }
}

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification

Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2007. All rights reserved.