Computer Science, asked by dixitverma23, 5 months ago

write a program to input a number and find the sum and product of its digits write using scanner class ​

Answers

Answered by SamidhaBartakke
0

Answer:

import java.util.Scanner;

public class Digits {

public static void main(String args[]) {

Scanner in = new Scanner(System.in);

System.out.print("Enter Number: ");

int number = in.nextInt();

int remainder, temp, sum=0, product=1;

temp = number;

while (temp!=0){

remainder = temp % 10;

sum = sum + remainder;

product = product * remainder;

temp = temp / 10;

}

System.out.println("Sum of digits of Number '"+number+"'': "+sum);

System.out.println("Product of digits of Number '"+number+"'': "+product);

}

}

Similar questions