1 char a = '\u0000';
 2 int d = 0;
 3 
 4 char c = a;
 5 do {
 6     d++;
 7     d %= 64;
 8     if (d + 1 == 64) {
 9         System.out.println();
10     }
11     System.out.print(c);
12     c++;
13 } while (c != a);

 

相关文章:

  • 2021-12-13
  • 2021-06-10
  • 2021-11-27
  • 2021-11-27
  • 2021-10-06
  • 2021-09-04
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
  • 2021-08-02
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案