First, welcome to the forum.
Second. Please learn to use the [ code ] tags.
Finally....
Lets look at the code.
Going through your code from top to bottom...
You make a new instance of a KeyBoardReader object. Which is used later in the program.
Then you declair some prices for your different products.
Then you declair some other attributes that have no value. So they are not being initialized and the compiler gets a little nervous when things aren't initialized.
You can fix your code by doing the following:
// Variables
double total = 0;
double tax = 0;
double totalT = 0;
double burger = 0;
double fries = 0;
double sodas = 0;
and don't forget to add a 's' to the end of fries.
Regards,
Nate