dxvmxnd

Untitled

Sep 21st, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.90 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Main {
  3.     public static void main(String[] args) {
  4.         int number=0, result=0;
  5.         boolean isIncorrect;
  6.         Scanner in = new Scanner(System.in);
  7.  
  8.         do {
  9.             isIncorrect = false;
  10.             try {
  11.                 System.out.println("Введите натуральное число: ");
  12.                 number = Integer.parseInt(in.nextLine());
  13.             }
  14.             catch (Exception e) {
  15.                 System.err.println("Неверный ввод данных!");
  16.                 isIncorrect = true;
  17.             }
  18.         } while (isIncorrect);
  19.  
  20.         while (number > 10) {
  21.             result = (number % 10) + result;
  22.             number = number / 10;
  23.         }
  24.         result = result + number;
  25.         System.out.print("Сумма цифр данного числа: ");
  26.         System.out.println(result);
  27.     }
  28. }
  29.  
Add Comment
Please, Sign In to add comment