Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
方程式を出力するには、数値の先頭の符号をフォーマットする必要があります。数値が正の数で方程式の先頭にある場合は、「+」記号を省略し、負の数の場合は「-」記号を残します。数字はユーザー入力からのもので、デフォルトでは、ユーザーは正の数字に対して「+」を入力しません。
Javaでは、先頭に「+」記号を付けたい場合、数値をどのようにフォーマットしますか? ありがとう
DecimalFormat言う
DecimalFormat
DecimalFormat パターンの構文は次のとおりです。 Pattern: PositivePattern PositivePattern ; NegativePattern
DecimalFormat パターンの構文は次のとおりです。
Pattern: PositivePattern PositivePattern ; NegativePattern
sonew DecimalFormat("#,##0.0###;-#,##0.0##")は、負の場合にのみ記号を前に付ける必要があります。
new DecimalFormat("#,##0.0###;-#,##0.0##")