Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - KOKONUT

#1
Programación C/C++ / MENU CON PROCEDIMIENTOS
12 Diciembre 2010, 14:40 PM
HOLA AMIGOS, URGENTE AYUDA.

TENGO UN EXAMEN FINAL Y..
ME PIDEN QUE LEA UN VECTOR Y LUEGO QUE INGRESE A UN MENU Y ME PIDE 1.- 1.- 1.- ORDENAR, 2.- ELIMINAR, 3.- ETC.

COMO LO HAGO?
TENGO AVANZADO ESTO.
#include "stdafx.h"
#include <conio.h>
#include <stdio.h>

//Ingresar Elementos
void Leer (int n,float x[])
{
int i;
for(i=1;i<=n;i++)
{
printf("Elemento Nro [%d] :",i);
scanf("%d",&x[i]);
}
}


//Programa Principal
int _tmain(int argc, _TCHAR* argv[])
{
int n,opcion;
float A[50];
printf("Numero de Elementos a Ingresar :");
scanf("%d",&n);
printf("Ingrese Elementos\n");

//AYUDA EN ESTA PARTE
//opcion=menu();
//switch (opcion)
//{
//1 : ORDENAR
//2 : ELIMINAR
//.
// .
//.
//3 : SALIR
//}


// mostrar(n,A);
getch();
}


SALUDOS KOKONUT