| | |
Output and null
Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
Thread Solved |
•
•
Join Date: Feb 2009
Posts: 29
Reputation:
Solved Threads: 0
Hello. I have written the code below but when I compile my program, I get
Taxable Income Amount Filing Status Tax Amount
-------------------------------------------------------------------------------
$50,000.00 null $0.00
I initialized my String output as null but I do not know how to initialize it otherwise. And I need my output to be called back to the main method in order to compute taxfinal. Can someone please help?
Taxable Income Amount Filing Status Tax Amount
-------------------------------------------------------------------------------
$50,000.00 null $0.00
I initialized my String output as null but I do not know how to initialize it otherwise. And I need my output to be called back to the main method in order to compute taxfinal. Can someone please help?
import java.util.Scanner; // Needed for the Scanner class
import java.text.NumberFormat; // Needed for number format class
public class Income
{
// Main method.
public static void main(String[ ] args)
{
double taxAmount;
boolean validInput = true;
boolean validEnter = true;
double tax1 = 0.0;
double tax2 = 0.0;
double tax3 = 0.0;
double tax4 = 0.0;
double tax5 = 0.0;
double tax6 = 0.0;
double taxfinal1 = 0.0;
double taxfinal2 = 0.0;
double taxfinal = 0.0;
double alphatax = 0.0;
double betatax = 0.0;
double enter = 0;
String output = null;
String menu = null;
String[ ] arrayOfValues = { output, Double.toString(enter)};
double[ ] arrayofNumbers= { taxfinal, enter};
Scanner keyboard = new Scanner (System.in);
System.out.print("\nEnter your taxable income amount: $");
do
{
taxAmount = keyboard.nextInt( ); // Stores the chosen movie.
validInput = true;
if ( (taxAmount < 50000) ) // Defines the invalid boundaries (but true by definition).
{
System.out.print ("\n(You must an amount greater than or equal to $50,000): $");
validInput = false;
}
}while(!validInput);
// A method call to displayMenu
displayMenu (arrayOfValues, menu, validEnter, enter= Double.parseDouble(arrayOfValues[1]), output=arrayOfValues[0]);
// A method to call to computeIncometax
computeIncometax (arrayofNumbers, taxAmount, enter, tax1, tax2, tax3, tax4, tax5, tax6, taxfinal1, taxfinal2, taxfinal, alphatax, betatax);
// A method to call to displayFinal
displayFinal (taxAmount, output, taxfinal);
System.exit(0);
}
public static String[ ] displayMenu(String[ ] arrayOfValues, String menu, boolean validEnter, double enter, String output)
{
Scanner keyboard = new Scanner (System.in);
System.out.print ("\n ");
System.out.print ("**************************************************************");
System.out.print ("\n * Filing Status Menu *");
System.out.print ("\n * 1 - Single *");
System.out.print ("\n * 2 - Married Filing Jointly *");
System.out.print ("\n * 3 - Marries Filing Separately *");
System.out.print ("\n * 4 - Head of Household *");
System.out.print ("\n **************************************************************");
System.out.print ("\n ");
System.out.print("\nPlease choose a filing status number: ");
do
{
enter = keyboard.nextInt( ); // Stores the chosen status number.
validEnter = true;
if ( (enter < 1) || (enter > 4)) // Defines the invalid boundaries (but true by definition).
{
System.out.print ("\n(You must pick a status number 1 through 4): ");
validEnter = false;
}
}while(!validEnter);
if (enter == 1)
output = "Single";
else if (enter == 2)
output = "Married Filing Jointly";
else if (enter == 3)
output = "Married Filing Separately";
else if (enter == 4)
output = "Head of Household";
else;
return arrayOfValues;
}
public static double[ ] computeIncometax(double[ ] arrayofNumbers, double taxAmount, double enter, double tax1, double tax2, double tax3, double tax4, double tax5, double tax6, double taxfinal1, double taxfinal2, double taxfinal, double alphatax, double betatax)
{
tax1 = 11158.50 + 0.31*(taxAmount - 49300.00);
tax2 = 5100.00 + 0.28*(taxAmount - 34000.00);
tax3 = 18582.00 + 0.31*(taxAmount - 82150.00);
tax4 = 9291.00 + 0.31*(taxAmount - 41075.00);
tax5 = 4095.00 + 0.28*(taxAmount - 27300);
tax6 = 16177.00 + 0.31*(taxAmount - 70450);
if (taxAmount > 34000 && taxAmount < 82150)
taxfinal1 = tax2;
else
taxfinal1 = tax3;
if (taxAmount > 27300 && taxAmount < 70450)
taxfinal2 = tax5;
else
taxfinal2 = tax6;
if (enter == 1)
taxfinal1 = tax1;
else if (enter == 2)
alphatax = taxfinal1;
else if (enter == 3)
taxfinal2 = tax4;
else if (enter == 4)
betatax= taxfinal1;
else;
if (enter == 1)
taxfinal = taxfinal1;
else if (enter == 2)
taxfinal = taxfinal1;
else if (enter == 3)
taxfinal = taxfinal2;
else if (enter == 4)
taxfinal = taxfinal2;
else;
return arrayofNumbers;
}
public static void displayFinal(double taxAmount, String output, double taxfinal)
{
NumberFormat nf = NumberFormat.getNumberInstance( ); // Defines the number format.
nf.setMinimumFractionDigits(2); // Sets the minimum decimal places.
nf.setMaximumFractionDigits(2); // Sets the maximum decimal places.
// Display the final statement
System.out.println(" ");
System.out.println(" Taxable Income Amount" + " Filing Status" + " Tax Amount" );
System.out.println("-------------------------------------------------------------------------------");
System.out.println(" $" + nf.format(taxAmount) + " " + output + " $" + nf.format(taxfinal));
System.out.println(" ");
}
} java Syntax (Toggle Plain Text)
{ int var = 0; somemethod(var); print var; } somemethod(int var) { var = 5; }
this is just pseudo code. in this example, the output of the code (printing var) will NOT be 5, but 0. the value of var is passed to the method, and so the method can use this, but any modifications to var are only valid within the method, it doesn't change var of the caller.
•
•
Join Date: Feb 2009
Posts: 29
Reputation:
Solved Threads: 0
I tried what you said but I'm still getting the same output. Below is my code
import java.util.Scanner; // Needed for the Scanner class
import java.text.NumberFormat; // Needed for number format class
/**
This program finds a person's federal income tax.
CPS 180
Abhik Roy
Homework 6
Friday, March 2, 2009
*/
public class Income
{
// Main method.
public static void main(String[ ] args)
{
double taxAmount;
boolean validInput = true;
boolean validEnter = true;
double tax1 = 0.0;
double tax2 = 0.0;
double tax3 = 0.0;
double tax4 = 0.0;
double tax5 = 0.0;
double tax6 = 0.0;
double taxfinal1 = 0.0;
double taxfinal2 = 0.0;
double taxfinal = 0.0;
double alphatax = 0.0;
double betatax = 0.0;
double enter = 0;
String output = null;
String menu = null;
String[ ] arrayOfValues = { output, Double.toString(enter)};
double[ ] arrayofNumbers= { taxfinal, enter};
Scanner keyboard = new Scanner (System.in);
System.out.print("\nEnter your taxable income amount: $");
do
{
taxAmount = keyboard.nextInt( ); // Stores the chosen movie.
validInput = true;
if ( (taxAmount < 50000) ) // Defines the invalid boundaries (but true by definition).
{
System.out.print ("\n(You must an amount greater than or equal to $50,000): $");
validInput = false;
}
}while(!validInput);
// A method call to displayMenu
displayMenu (arrayOfValues, menu, validEnter, enter= Double.parseDouble(arrayOfValues[1]), output=arrayOfValues[0]);
// A method to call to computeIncometax
computeIncometax (arrayofNumbers, taxAmount, enter, tax1, tax2, tax3, tax4, tax5, tax6, taxfinal1, taxfinal2, taxfinal, alphatax, betatax);
// A method to call to displayFinal
displayFinal (taxAmount, output, taxfinal);
System.exit(0);
}
public static double displayMenu(String[ ] arrayOfValues, String menu, boolean validEnter, double enter, String output)
{
Scanner keyboard = new Scanner (System.in);
System.out.print ("\n ");
System.out.print ("**************************************************************");
System.out.print ("\n * Filing Status Menu *");
System.out.print ("\n * 1 - Single *");
System.out.print ("\n * 2 - Married Filing Jointly *");
System.out.print ("\n * 3 - Marries Filing Separately *");
System.out.print ("\n * 4 - Head of Household *");
System.out.print ("\n **************************************************************");
System.out.print ("\n ");
System.out.print("\nPlease choose a filing status number: ");
do
{
enter = keyboard.nextInt( ); // Stores the chosen status number.
validEnter = true;
if ( (enter < 1) || (enter > 4)) // Defines the invalid boundaries (but true by definition).
{
System.out.print ("\n(You must pick a status number 1 through 4): ");
validEnter = false;
}
}while(!validEnter);
if (enter == 1)
output = "Single";
else if (enter == 2)
output = "Married Filing Jointly";
else if (enter == 3)
output = "Married Filing Separately";
else if (enter == 4)
output = "Head of Household";
else;
return enter;
}
public static double computeIncometax(double[ ] arrayofNumbers, double taxAmount, double enter, double tax1, double tax2, double tax3, double tax4, double tax5, double tax6, double taxfinal1, double taxfinal2, double taxfinal, double alphatax, double betatax)
{
tax1 = 11158.50 + 0.31*(taxAmount - 49300.00);
tax2 = 5100.00 + 0.28*(taxAmount - 34000.00);
tax3 = 18582.00 + 0.31*(taxAmount - 82150.00);
tax4 = 9291.00 + 0.31*(taxAmount - 41075.00);
tax5 = 4095.00 + 0.28*(taxAmount - 27300);
tax6 = 16177.00 + 0.31*(taxAmount - 70450);
if (taxAmount > 34000 && taxAmount < 82150)
taxfinal1 = tax2;
else
taxfinal1 = tax3;
if (taxAmount > 27300 && taxAmount < 70450)
taxfinal2 = tax5;
else
taxfinal2 = tax6;
if (enter == 1)
taxfinal1 = tax1;
else if (enter == 2)
alphatax = taxfinal1;
else if (enter == 3)
taxfinal2 = tax4;
else if (enter == 4)
betatax= taxfinal1;
else;
if (enter == 1)
taxfinal = taxfinal1;
else if (enter == 2)
taxfinal = taxfinal1;
else if (enter == 3)
taxfinal = taxfinal2;
else if (enter == 4)
taxfinal = taxfinal2;
else;
return enter;
}
public static void displayFinal(double taxAmount, String output, double taxfinal)
{
NumberFormat nf = NumberFormat.getNumberInstance( ); // Defines the number format.
nf.setMinimumFractionDigits(2); // Sets the minimum decimal places.
nf.setMaximumFractionDigits(2); // Sets the maximum decimal places.
// Display the final statement
System.out.println(" ");
System.out.println(" Taxable Income Amount" + " Filing Status" + " Tax Amount" );
System.out.println("-------------------------------------------------------------------------------");
System.out.println(" $" + nf.format(taxAmount) + " " + output + " $" + nf.format(taxfinal));
System.out.println(" ");
}
} you are returning the value, but doing nothing with it. another question, are you actually returning the correct value?
![]() |
Similar Threads
- Capturing Console Output (C)
- output numbers from a varible on different lines asap (Java)
- help with polymorphism and inheritance...getting null values (Java)
- help with sort using Calendar class getting null pointer exception (Java)
- string translation (Java)
- Stack Queue Fstream (C++)
- How do you output to the screen? (Java)
- file input and output (C)
Other Threads in the Java Forum
- Previous Thread: Need help with java program
- Next Thread: Approxiamation Program
| Thread Tools | Search this Thread |
Tag cloud for Java
actionlistener android api append apple applet application arguments array arrays automation bi binary bluetooth busy_handler(null) chat class classes clear client code component database draw eclipse ee error event exception fractal game givemetehcodez graphics gui html ide image input integer j2me java javaprojects jmf jni jpanel julia jvm key lego linux list loop map method methods mobile mobiledevelopmentcreatejar myaggfun netbeans newbie nextline notdisplaying number oracle oriented output print problem program programming project qt recursion repositories return robot scanner screen se server set singleton size sms socket sort sql string swing terminal test textfields threads time transfer tree utility windows wrong xor






