要求:
◦ 为了输出小写英文字母表,首先获取英文小写字母表
的第一个字母在Unicode 表中的位置,然后使用循环
输出其余小写英文字母;
◦ 为了输出大写英文字母表,首先获取英文大写字母表
的第一个字母在Unicode 表中的位置,然后使用循环
输出其余大写英文字母。
实验代码示例
public class PrintLetter
{
public static void main(String args [])
{
PrintLetter pl = new PrinterLetter ();
pl.printLowerCase ();
pl.printUpperCase ();
}
void printLowerCase ()
{
代码
}
void printUpperCase ()
{
代码
}
}