Advertisement
venik2405

laba1_3_2

Sep 29th, 2020
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.22 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class lab1_3_2 {
  6.     public lab1_3_2() {
  7.     }
  8.  
  9.     public static void main(String[] args) {
  10.         boolean isNotCorrect = false;
  11.         System.out.println("Данная программа позволяет узнать количество цифр , из которых состоит число");
  12.         int number = 0;
  13.         int colOfNumber = 1;
  14.  
  15.         do {
  16.             try {
  17.                 Scanner scanner = new Scanner(System.in);
  18.                 System.out.println("Введите число");
  19.                 number = scanner.nextInt();
  20.                 if (number < 0) {
  21.                     isNotCorrect = true;
  22.                     System.out.println("Число должно быть неотрицательным");
  23.                 }
  24.             } catch (Exception var5) {
  25.                 System.out.println("Введите корректное значение");
  26.                 isNotCorrect = true;
  27.             }
  28.         } while (isNotCorrect);
  29.  
  30.         while (number / 10 >= 1) {
  31.             ++colOfNumber;
  32.             number /= 10;
  33.         }
  34.  
  35.         System.out.println("Количество цифр " + colOfNumber);
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement