Advertisement
Rayk

Untitled

Apr 27th, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Main {
  6. public static void main(String[] args) {
  7. Scanner scanner = new Scanner(System.in);
  8.  
  9. int number = Integer.parseInt(scanner.nextLine());
  10.  
  11. int sum = 0;
  12. while (number > 0) {
  13. int lastDigit = number % 10;
  14. number /= 10;
  15.  
  16. sum += lastDigit;
  17. }
  18.  
  19. System.out.println(sum);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement