Search:

Type: Posts; User: SANA4SPA

Search: Search took 0.09 seconds.

  1. Re: if else statement: I need to place a price in a variable: to later ad taxes and topping to final cost.

    Hello GregBrannon, I'm new to this site and as you have probably deducted already, I'm new to programming. I appreciate your guidance on the proper way to conduct myself on this site.

    I hope my...
  2. How to place the chosen pizza size in a integer variable.

    //set price and size of pizza ordered


    if (inches==10)
    System.out.println("Cost 10.99\n");

    else if (inches==12)
    System.out.println("Cost 12.99\n");

    else if (inches==14)
  3. if else statement: I need to place a price in a variable: to later ad taxes and topping to final cost.

    package lab_3;

    /**
    This program allows the user to order a pizza
    */
    import java.util.Scanner;
    //import java.text.DecimalFormat;

    public class PizzaOrder
    {
Results 1 to 3 of 3