complete the declaration of the constant integer variable tablespoons_per_cup. the program then reads…

complete the declaration of the constant integer variable tablespoons_per_cup. the program then reads integer numcups from input and converts the number of cups to number of tablespoons, using tablespoons_per_cup. ex: if the input is 16, then the output is: 16 cups = 256 tablespoons import java.util.scanner; public class unitconversion { public static void main(string args) { scanner scnr = new scanner(system.in); /* your code goes here */ tablespoons_per_cup = 16; int numcups; int numtablespoons; numcups = scnr.nextint(); numtablespoons = numcups * tablespoons_per_cup; system.out.println(numcups + \ cups = \ + numtablespoons + \ tablespoons\); } }

complete the declaration of the constant integer variable tablespoons_per_cup. the program then reads integer numcups from input and converts the number of cups to number of tablespoons, using tablespoons_per_cup. ex: if the input is 16, then the output is: 16 cups = 256 tablespoons import java.util.scanner; public class unitconversion { public static void main(string args) { scanner scnr = new scanner(system.in); /* your code goes here */ tablespoons_per_cup = 16; int numcups; int numtablespoons; numcups = scnr.nextint(); numtablespoons = numcups * tablespoons_per_cup; system.out.println(numcups + \ cups = \ + numtablespoons + \ tablespoons\); } }

Answer

Explanation:

Step1: Declare constant in Java

In Java, to declare a constant integer, we use the final keyword. final int TABLESPOONS_PER_CUP = 16;

Answer:

final int TABLESPOONS_PER_CUP = 16;