制表符 \t 的用法

 

1 public class test {
2     public static void main(String [] args){
3         System.out.println("123456\t前面内容有6位,补2个空格");
4         System.out.println("12345678\t前面内容有8位,加8个空格");
5         System.out.println("123456789012345\t前面内容有15位,补1个空格");
6     }
7 }

 

参考:https://blog.csdn.net/hju22/article/details/79773252

转载于:https://www.cnblogs.com/zach0812/p/11479186.html

你可能感兴趣的:(制表符 \t 的用法)