/* (Beginning of program header comment)
* Copyright and version of the Program statement section
* Copyright (c) 2011, students of Computer College, Yantai University
* All rights reserved.
* File name: Output 24 Greek letters
* Author: Lei Hengxin
* Date of Completion: September 06, 2012
* Version number: V1.0
* Description of tasks and solutions
* Input Description:
* Problem Description:
* Program output:
* The end of the comment on the program head
*/
Package com.edu.ytu.GuessNumber;
public class Input_abc {public
static void Main (String args[])//Static entry method main;
{
input ();//embodies object-oriented features;
}
static void Input () {
int i = 945,m,k=1;
for (m= i;m<i+25;++m)
{
System.out.println ("subclause" +k+ "Greek letter is:" + (char) m);//force type conversion;
++k
;
}}}
Run Result:
Experience Accumulation:
public static void Main (String args[])//Static entry method main;
{
Input ();//embodies the object-oriented features;
}