A Duck number is a positive number which has zeroes present in it, For example 3210, 8050896, 70709 are all Duck numbers. Please note that a numbers with only leading 0s is not considered as Duck Number. For example, numbers like 035 or 0012 are not considered as Duck Numbers. A number like 01203 is considered as Duck because there is a non-leading 0 present in it.
Examples :
Input : 707069
Output : It is a duck number.
Explanation: 707069 does not contains zeros at the beginning.Input : 02364
Output : It is not a duck number.
Explanation: in 02364 there is a zero at the beginning of the number.
C++
// C++ Program to check whether // a number is Duck Number or not. #include <iostream> using namespace std; // Function to check whether // given number is duck number or not. bool check_duck(string num) { // Ignore leading 0s int i = 0, n = num.length(); while (i < n && num[i] == '0') i++; // Check remaining digits while (i < n) { if (num[i] == '0') return true; i++; } return false; } // Driver Method int main(void) { string num = "1023"; if (check_duck(num)) cout << "It is a duck number\n"; else cout << "It is not a duck number\n"; return 0; } |
Java
// Java Program to check whether a // number is Duck Number or not. import java.io.*; class GFG { // Function to check whether // the given number is duck number or not. static boolean check_duck(String num) { // Ignore leading 0s int i = 0, n = num.length(); while (i < n && num.charAt(i) == '0') i++; // Check remaining digits while (i < n) { if (num.charAt(i) == '0') return true; i++; } return false; } // Driver Method public static void main(String args[]) throws IOException { String num = "1023"; if (check_duck(num)) System.out.println("It is a duck number"); else System.out.println("It is not a duck number"); } } |
Python
# Python program to check whether a number is Duck Number or not. # Function to check whether # the given number is duck number or not. def check_duck(num) : # Length of the number(number of digits) n = len(num) # Ignore leading 0s i = 0 while (i < n and num[i] == '0') : i = i + 1 # Check remaining digits while (i < n) : if (num[i] == "0") : return True i = i + 1 return False # Driver Method num1 = "1023" if(check_duck(num1)) : print "It is a duck number"else : print "It is not a duck number" # Write Python3 code here |
C#
// C# Program to check whether a // number is Duck Number or not. using System; class GFG { // Function to check whether // the given number is duck // number or not. static bool check_duck( String num) { // Ignore leading 0s int i = 0, n = num.Length; while (i < n && num[i] == '0') i++; // Check remaining digits while (i < n) { if (num[i] == '0') return true; i++; } return false; } // Driver Method public static void Main() { String num1 = "1023"; // checking number1 if( check_duck(num1)) Console.Write("It is a " + "duck number"); else Console.Write("It is not " + "a duck number"); } } // This code is contributed by // nitin mittal. |
Output :
It is a duck number.
This article is contributed by Nikita Tiwari. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.
Recommended Posts:
- Program to check whether the given number is Buzz Number or not
- Program to check whether a number is Proth number or not
- Check whether the given number is Euclid Number or not
- Check whether all the rotations of a given number is greater than or equal to the given number or not
- Check whether given number N is a Moran Number or not
- Check whether a given number N is a Nude Number or not
- Check whether a given number is an ugly number or not
- Check whether a number is circular prime or not
- Check whether a number has exactly three distinct factors or not
- Check whether a number is semiprime or not
- Check whether a number is Emirpimes or not
- Check whether the number formed by concatenating two numbers is a perfect square or not
- Check whether a given number is Polydivisible or Not
- Check whether a given Number is Power-Isolated or not
- Check whether the given number is Wagstaff prime or not
- Check whether a number has consecutive 0's in the given base or not
- Check whether the binary equivalent of a number ends with "001" or not
- Check whether a large number is divisible by 53 or not
- Check whether a number is Good prime or not
- C Program to check whether a number is a Perfect Cube or not

