添加六进制

master
王家彬 2 months ago
parent ecf1d20e60
commit 3756cfbdf0

@ -5,18 +5,38 @@ import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class text1 extends Application {
private String toBase6String(int number) {
if (number == 0) {
return "0";
}
StringBuilder sb = new StringBuilder();
char[] digits = {'0', '1', '2', '3', '4', '5'};
boolean isNegative = number < 0;
if (isNegative) {
number = -number;
}
while (number > 0) {
sb.insert(0, digits[number % 6]);
number /= 6;
}
if (isNegative) {
sb.insert(0, '-');
}
return sb.toString();
}
@Override
public void start(Stage primaryStage) {
// 创建文本输入框
TextField inputField = new TextField();
inputField.setPromptText("输入一个十进制数");
VBox vBox = new VBox(10);
// 创建标签显示结果
Label binaryLabel = new Label();
Label octalLabel = new Label();
Label hexLabel = new Label();
//
// 创建按钮
Button convertButton = new Button("转换");
convertButton.setOnAction(e -> {
@ -25,6 +45,9 @@ public class text1 extends Application {
binaryLabel.setText(String.format("二进制: %s", Integer.toBinaryString(number).toUpperCase()));
octalLabel.setText(String.format("八进制: %s", Integer.toOctalString(number)));
hexLabel.setText(String.format("十六进制: %s", Integer.toHexString(number).toUpperCase()));
Label base6Label = new Label();
base6Label.setText(String.format("六进制: %s", toBase6String(number)));
vBox.getChildren().add(base6Label);
} catch (NumberFormatException ex) {
Alert alert = new Alert(Alert.AlertType.ERROR);
alert.setTitle("输入错误");
@ -35,7 +58,7 @@ public class text1 extends Application {
});
// 创建布局
VBox vBox = new VBox(10);
vBox.getChildren().addAll(inputField, convertButton, binaryLabel, octalLabel, hexLabel);
// 设置场景

Loading…
Cancel
Save