![]() |
|
|
|
| ||||||
|
Welcome to the The ProgrammersTalk Community forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
| Tags: |
![]() |
![]() | | LinkBack | Thread Tools | Display Modes | ![]() |
| |||
| [SOLVED] Iam making a JavaScript program, and I need the output to be in currency.? The program is a GUI program. It is a windowed program with a calculate button that calculates sales tax. Here is the section of code that I beleive has to be modified. The Variables A3 and A4 must put out in currency with two decimal places. public void actionPerformed(ActionEvent e) { double A1, A2, A3, A4; A1 = Double.parseDouble(TF1.getText()); A2 = Double.parseDouble(TF2.getText()); A3 = (A1 * A2); A4 = (A1 + A3); TF3.setText("$" + A3); TF4.setText("$" + A4); } } |
| |
![]() |
| Thread Tools | |
| Display Modes | |
| |