1180 Lowest Number and Position

Niloy Sarker
By -
0
URI Online Judge | 1180

Lowest Number and Position

Write a program that reads a number N. This is the size of a array X[N]. Next, read each of the numbers of X, find the smallest element of this array and its position within the array, printing this information.

Input

The first line of input contains one integer (1 < <1000), indicating the number of elements that should be read to an array X[N] of integer numbers. The second row contains each of the N values, separated by a space.

Output

The first line displays the message “Menor valor:” followed by a space and the lowest number read in the input. The second line displays the message “Posicao:” followed by a space and the array position in which the lowest number is, remembering that the array starts at the zero position.
Input SampleOutput Sample
10
1 2 3 4 -5 6 7 8 9 10
Menor valor: -5
Posicao: 4

Solution:
#include<stdio.h>
int main()
{
    int   a[2000], n, sml,smlp,i;


    scanf("%d",&n) ;

        for(i = 0 ;i < n ;i++)
            {
                scanf("%d", &a[i]) ;
            }

            sml = a[0] ;

        for (  i = 0 ; i < n ; i++ )
            {
                if ( a[i] <= sml )
            {
            sml = a[i] ;
            smlp = i ;
            }
            }
        printf("Menor valor: %d\nPosicao: %d\n", sml,smlp) ;

    return ( 0 ) ;
}

Tags:

Post a Comment

0Comments

Post a Comment (0)