Número par más pequeño con N dígitos

Dado un número N , la tarea es encontrar el número par más pequeño con N dígitos.
Ejemplos: 
 

Input: N = 1
Output: 0

Input: N = 2
Output: 10 

Enfoque
Caso 1 : si N = 1, la respuesta será 0. 
Caso 2 : si N != 1, la respuesta será (10^(N-1)) porque la serie de números pares más pequeños seguirá como 0, 10, 100, 1000, 10000, 100000, …..
A continuación se muestra la implementación del enfoque anterior: 
 

C++

// C++ implementation of the approach
#include <bits/stdc++.h>
using namespace std;
 
// Function to return smallest even
// number with n digits
int smallestEven(int n)
{
    if (n == 1)
        return 0;
    return pow(10, n - 1);
}
 
// Driver Code
int main()
{
 
    int n = 4;
    cout << smallestEven(n);
 
    return 0;
}

Java

// Java implementation of the approach
class Solution {
 
    // Function to return smallest even
    // number with n digits
    static int smallestEven(int n)
    {
        if (n == 1)
            return 0;
        return Math.pow(10, n - 1);
    }
 
    // Driver code
    public static void main(String args[])
    {
        int n = 4;
        System.out.println(smallestEven(n));
    }
}

Python3

# Python3 implementation of
# the approach
 
# Function to return smallest
# even number with n digits
def smallestEven(n) :
 
    if (n == 1):
        return 0
    return pow(10, n - 1)
 
# Driver Code
n = 4
print(smallestEven(n))
 
# This code is contributed
# by ihritik.

C#

// C# implementation of the approach
using System;
class Solution {
 
    // Function to return smallest even
    // number with n digits
    static int smallestEven(int n)
    {
        if (n == 1)
            return 0;
        return Math.pow(10, n - 1);
    }
 
    // Driver code
    public static void Main()
    {
        int n = 4;
        Console.Write(smallestEven(n));
    }
}

PHP

<?php
// PHP implementation of the approach
 
// Function to return smallest
// even number with n digits
function smallestEven($n)
{
    if ($n == 1)
        return 0;
    return pow(10, $n - 1);
}
 
// Driver Code
$n = 4;
echo smallestEven($n);
 
// This code is contributed
// by ihritik.
?>

Javascript

<script>
// Javascript implementation of the approach
 
// Function to return smallest even
// number with n digits
function smallestEven(n)
{
    if (n == 1)
        return 0;
    return Math.pow(10, n - 1);
}
 
// Driver Code
var n = 4;
document.write(smallestEven(n));
 
// This code is contributed by rrrtnx.
</script>
Producción: 

1000

 

Complejidad temporal: O(log n).
 

Publicación traducida automáticamente

Artículo escrito por spp____ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *