lunes, 15 de septiembre de 2014

Programa para saber las cordenadas x,y


#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{

    int x,y,num=2, numeros[3][3];

    for (x=0;x<3;x++)
    {
        for (y=0;y<3;y++)
        {
            numeros[x][y]=num;
            num=num*2;
        }
    }

    printf("COORDENADA X: ");
    scanf("%d",&x);
    printf("COORDENADA Y: ");
    scanf("%d",&y);

    printf("EL NUMERO ES: %d\n",numeros[x][y]);

    system("PAUSE");
    return 0;

}

No hay comentarios.:

Publicar un comentario