Java program to demonstrate looping : For « Language Basics « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Language Basics » For 




Java program to demonstrate looping
Java program to demonstrate looping
 
/*
Java Programming for Engineers
Julio Sanchez
Maria P. Canton


ISBN: 0849308100
Publisher: CRC Press
*/


// File name: AsciiTable.java
//Reference: Chapter 11
//
//Java program to demonstrate looping
//Topics:
// 1. Using several loop constructs simultaneously
// 2. Nested loops
//
public class AsciiTable {
  public static void main(String[] args) {
    // Local variables
    char hexLetter; // For table header
    char ascCode = 0x20// First ASCII code
    // Counters for rows and columns
    int row = 2;
    int column;

    System.out.print("\n\n");
    System.out.print("                             ");
    System.out.println("ASCII CHARACTER TABLE");
    System.out.print("                            ");
    System.out.println("characters 0x20 to 0xff");
    System.out.print("\n    ");

    // Loops 1 and 2
    // Display column heads for numbers 0 to F hexadecimal
    for (hexLetter = '0'; hexLetter <= '9'; hexLetter++)
      System.out.print("   " + hexLetter);
    for (hexLetter = 'A'; hexLetter <= 'F'; hexLetter++)
      System.out.print("   " + hexLetter);

    // Blank line to separate table head from data
    System.out.println("\n");

    // Loop 3
    // While ASCII codes smaller than 0x80 display row head
    // and leading spaces
    // Loop 4 (nested in loop 3)
    // Display row of ASCII codes for columns 0 to 0x0F.
    // Add a new line at end of each row
    while (ascCode < 0x80) {
      System.out.print("   " + row);
      for (column = 0; column < 16; column++) {
        System.out.print("   " + ascCode);
        ascCode++;
      }
      System.out.print("\n\n");
      row++;
    }
  }
}


           
         
  














Related examples in the same category
1.For loop: all conditions
2.for Demofor Demo
3.Check out for loopCheck out for loop
4.Java labeled for loop.Java labeled for loop.
5.Demonstrates for loop by listing all the lowercase ASCII letters.Demonstrates for loop by listing all the lowercase ASCII letters.
6.Comma OperatorComma Operator
7.Declare multiple variables in for loop
8.Infinite For loop Example
9.Multiple expressions in for loops
10.Java program to demonstrate looping 1Java program to demonstrate looping 1
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.