Java は初めてで、プログラミングは比較的新しいです。以下のコードは、すでに完全に実行されているプログラムの最後の数行です。最終結果 (newTuition 変数) を四捨五入して、有効数字 2 桁に制限したいだけです。
newTuition、TUITIONINCREASE、tuition はすべて 2 倍です。
newTuition = ((TUITIONINCREASE * .01) * tuition) + tuition + ".");
System.out.println("Your current tuition is $" + tuition + ". It will rise next year by " + TUITIONINCREASE + "% and " +
"your new tuition will be $" + newTuition);