KnowledgeBoat Logo

Computer Applications

Define a class to accept a 3 digit number and check whether it is a duck number or not.
Note: A number is a duck number if it has zero in it.

Example 1:
Input: 2083
Output: Invalid

Example 2:
Input: 103
Output: Duck number

Java

Java Iterative Stmts

ICSE Sp 2024

82 Likes

Answer

import java.util.Scanner;

public class KboatDuckNumber
{
    public static void main(String args[]) 
    {
        Scanner in = new Scanner(System.in);
        System.out.print("Enter a number: ");
        int num = in.nextInt();
        int n = num;
        int count = 0;
        
        while (n != 0)    {
            count++;
            n = n / 10;
        }
        
        if (count == 3)
        {
            n = num;
            boolean isDuck = false;
            while(n != 0) 
            {
                if(n % 10 == 0)  
                {  
                    isDuck = true;
                    break;
                }
                n = n / 10;  
            }
            
            if (isDuck) {
                System.out.println("Duck Number");
            }
            else {
                System.out.println("Not a Duck Number");
            }
        }
        else {
            System.out.println("Invalid");
        }
    }
}

Variable Description Table

Program Explanation

Output

BlueJ output of Define a class to accept a 3 digit number and check whether it is a duck number or not. Note: A number is a duck number if it has zero in it. Example 1: Input: 2083 Output: Invalid Example 2: Input: 103 Output: Duck numberBlueJ output of Define a class to accept a 3 digit number and check whether it is a duck number or not. Note: A number is a duck number if it has zero in it. Example 1: Input: 2083 Output: Invalid Example 2: Input: 103 Output: Duck numberBlueJ output of Define a class to accept a 3 digit number and check whether it is a duck number or not. Note: A number is a duck number if it has zero in it. Example 1: Input: 2083 Output: Invalid Example 2: Input: 103 Output: Duck number

Answered By

26 Likes


Related Questions