本帖最后由 王金科 于 2012-9-1 16:28 编辑
- <div class="blockcode"><blockquote>
- import java.util.*;
-
- public class Test{
- public static void main(String[] args){
- show('a');
- System.out.println();
- show('A');
-
- }
- public static void show(char temp){
- for(int j=0;j<100;j++){
- for(int i=0;i<26;i++){
- System.out.print((char)(temp+i));
- }
- System.out.println(",打印第:" + (j+1) + "遍");
- }
- }
- }
复制代码 |