英文:
Proper data formatting and alignment
问题
如何正确格式化这些数字列?意思是所有数字应该在列中对齐。
我尝试使用格式化但仍然无法修复对齐。例如:
625 50 25
676 52 26
729 54 27
784 56 28
841 58 29
900 60 30
961 62 31
1024 64 32
1089 66 33
1156 68 34
1225 70 35
1296 72 36
输出
625 50 25
676 52 26
729 54 27
784 56 28
841 58 29
900 60 30
961 62 31
1024 64 32
1089 66 33
1156 68 34
1225 70 35
1296 72 36
public class TestFormat {
public static void main(String[] args) {
for(int i = 25; i<50;i++) {
int sum = i * i;
int add = i + i;
int div = (i+i)/2;
System.out.println("\t" + sum + "\t\t" + add + "\t\t" + div);
}
}
}
英文:
How can I format these columns of numbers properly? Meaning all numbers should be aligning with each other in columns.
I tried to use format but still couldn't fix the alignment. Like :
625 50 25
676 52 26
729 54 27
784 56 28
841 58 29
900 60 30
961 62 31
1024 64 32
1089 66 33
1156 68 34
1225 70 35
1296 72 36
Output
625 50 25
676 52 26
729 54 27
784 56 28
841 58 29
900 60 30
961 62 31
1024 64 32
1089 66 33
1156 68 34
1225 70 35
1296 72 36
public class TestFormat {
public static void main(String[] args) {
for(int i = 25; i<50;i++) {
int sum = i * i;
int add = i + i;
int div = (i+i)/2;
System.out.println("\t" + sum + "\t\t" + add + "\t\t" + div);
}
}
}
答案1
得分: 2
你可以使用System.out.printf
,并带有左对齐标志-
:
// 每个列左对齐6个字符
System.out.printf("%-6d %-6d %d%n", sum, add, div);
查看格式化教程获取更多详细信息。
英文:
You could use System.out.printf
with left-justified flag -
:
// 6 chars left justified for each column
System.out.printf("%-6d %-6d %d%n", sum, add, div);
See formatting tutorial for more details
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论