Fill in the blanks with the words given in the box: a) A of coffee. d) A of drawers b) A of salt. e) A of hair CA of cake. f) A of wood Chest , slice, strand bottle, Log pinch, tub, cup
Answers
Answered by
17
a) A of coffee. d) A of drawers b) A of salt. e) A of hair CA of cake. f) A of wood Chest , slice, strand bottle, Log pinch, tub, cup.
Hope helps uh
Answered by
0
Answer:
import java.util.Scanner;
public class KboatEvenSuccessor
{
public void computeProduct() {
Scanner in = new Scanner(System.in);
System.out.print("Enter the number: ");
int num = in.nextInt();
int orgNum = num;
int prod = 1;
while (num != 0) {
int digit = num % 10;
num /= 10;
if (digit % 2 == 0)
prod = prod * (digit + 1);
}
if (prod == 1)
System.out.println("No even digits in " + orgNum);
else
System.out.println("Product of even digits successors is "
+ prod);
}
}
What is the question of this programming?
Similar questions
Social Sciences,
5 hours ago
Math,
5 hours ago
Biology,
10 hours ago
Science,
7 months ago
Geography,
7 months ago