Baham's Blog

Above all else, guard your heart.

Java文件处理-调整Java源程序缩进

编写程序提示用户输入文件名,假设该文件是一个Java源程序。你的程序会在调整其代码缩进后将该Java源程序代码重新输出。要求如下:

  1. 当读到”{“时,增加4个空格作为缩进。

  2. 当读到”}“时,减少4个空格作为缩进。

假设条件如下:

  1. 每一行最多只会出现一个”{“或”}“。

  2. 每一段代码块均为省略大括号(如if或for语句)。

  3. 所有大括号均出现在行尾。




The Original Link: http://baham.github.io/07_28_241.html
If you want to reprint it, please do under the CC BY-NC-SA 4.0

Comments