如何使用Java编程语言在输出古诗《悯农》题目时居中显示
时间: 2024-09-19 16:08:25 浏览: 45
小班语言课教案《古诗悯农》润新教育.txt
在Java中,你可以使用`System.out.println()`函数配合字符串格式化来实现标题居中显示。这里是一个简单的例子,假设你想打印"悯农"这个题目:
```java
public class Main {
public static void main(String[] args) {
String title = "悯农";
int width = 80; // 假设屏幕宽度是80个字符
// 计算需要填充的空格数,使得标题长度加上两边的空格外加1等于屏幕宽度
int spaceCount = (width - title.length() - 1) / 2;
// 在标题前和后添加等量的空格使其居中
String centeredTitle = String.format("%*s", spaceCount, title);
System.out.println(centeredTitle);
}
}
```
运行此程序,标题"悯农"会在80个字符宽的屏幕上居中显示。
阅读全文