Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- import java.util.Scanner;
- public class lab1_3_2 {
- public lab1_3_2() {
- }
- public static void main(String[] args) {
- boolean isNotCorrect = false;
- System.out.println("Данная программа позволяет узнать количество цифр , из которых состоит число");
- int number = 0;
- int colOfNumber = 1;
- do {
- try {
- Scanner scanner = new Scanner(System.in);
- System.out.println("Введите число");
- number = scanner.nextInt();
- if (number < 0) {
- isNotCorrect = true;
- System.out.println("Число должно быть неотрицательным");
- }
- } catch (Exception var5) {
- System.out.println("Введите корректное значение");
- isNotCorrect = true;
- }
- } while (isNotCorrect);
- while (number / 10 >= 1) {
- ++colOfNumber;
- number /= 10;
- }
- System.out.println("Количество цифр " + colOfNumber);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement