ACTIVITY The cost to ship a package is a flat fee of 75 cents plus 25 cents per pound. 1. Declare a constant named CENTS_PER_POUND and initialize with 25. 2. Get the shipping weight from user input storing the weight into shipWeightPounds. 3. Using FLAT_FEE_CENTS and CENTS_PER_POUND constants, assign shipCostCents with the cost of shipping a package weighing shipWeightPounds. 428064 2870338 qx3zqy7 1 import java.util.Scanner; 2 2.9.1: Using constants in expressions. 3 public class ShippingCalculator { 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18) Run public static void main(String[] args) { Scanner scnr = new Scanner(System.in); } int shipWeightPounds; int shipCostCents <= 0; final int FLAT_FEE_CENTS = 75; final int CENTS_PER_POUND = 25; int shipWeight Pounds scnr.nextint(); shipCostCents = FLAT_FEE_CENTS+ (CENTS_PER_POUND shipWeightPounds); System.out.println("Weight (lb): " + shipWeight Pounds); System.out.println("Flat fee(cents): " + FLAT_FEE_CENTS); System.out.println("Cents per pound: + CENTS_PER_POUND); System.out.println("Shipping cost (cents): + shipCostCents); O huly Gal 1 test passed All tests passed A b 10/
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
Program code:
import java.util.Scanner;
public class ShippingCalculator {
public static void main (String [] args)
{
Scanner scnr = new Scanner(System.in);
int shipWeightPounds;
int shipCostCents = 0;
final int FLAT_FEE_CENTS = 75;
final int CENTS_PER_POUND = 25;
System.out.println("Enter Weight(lb):");
shipWeightPounds = scnr.nextInt();
shipCostCents = (shipWeightPounds * CENTS_PER_POUND) + FLAT_FEE_CENTS;
System.out.println("Weight(lb): " + shipWeightPounds);
System.out.println("Flat fee(cents): " + FLAT_FEE_CENTS);
System.out.println("Cents per pound: " + CENTS_PER_POUND);
System.out.println("Shipping cost(cents): " + shipCostCents);
}
}
Step by step
Solved in 2 steps with 1 images