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 - MAXCOM-1994

#1
Programación C/C++ / Re: DEV C++ ERROR
1 Octubre 2012, 02:50 AM
HOLA:

ALGUIEN ME PUEDE EXPLICAR COMO UTILIZAR DO WHILE,
IF THEN ELSE

O CUALQUIERA DE LAS SENTENCIAS DE CONTROL, PARA PODER AGREGAR MENUS A UN PROGRAMA, SI ESTOS SE TIENEN QUE PONER ANTES DE INT MAIN O CUALQUIER COSA PORFA
#2
Programación C/C++ / Re: DEV C++ ERROR
4 Septiembre 2012, 04:17 AM
gracias por los consejos, los seguire tanto para postigiar en la pagina, mas adelante
#3
Programación C/C++ / Re: DEV C++ ERROR
4 Septiembre 2012, 04:15 AM
gracias crscapunk, me sirvio de mucho me has salvado de una, pero tengo una pregunta mas, realice el siguiente programa, pero no invoque a la formula
v= vo + g*t, o a lo mejor y lo invoque pero no de esa manera

/*FisiCalc*/
#include<stdio.h>
#include<conio.h>

int main()
   {
         void Velocidad(void);
         printf("Programa FisiCalc.");
         printf("\nPulse una tecla para continuar.");
         getch();
         Velocidad();
         printf("\nPulse una tecla para terminar.");
         getch();
         return 0;
   }

   void Velocidad(void)
   {
         const float g=6.693;/*m3/kg.s2*/
         float v,vo,t;
         printf("\nLa velocidad inicial (vo) es:");
         scanf("%f",&vo);
         printf("\nEl tiempo (t) es:");
         scanf("%f",&t);
         v = vo + g*t;
         printf("\nLa velocidad (v) es: %f m/s",v);
         printf("\nPulse una tecla para continuar,");
         getch();
         return;
   }
#4
Programación C/C++ / Re: DEV C++ ERROR
4 Septiembre 2012, 03:59 AM
DE SER ASI, DE QUE FORMA LA DECLARO, DISCULPA MI PREGUNTA SOY PRINCIPIANTE EN PROGRAMAR
#5
Programación C/C++ / DEV C++ ERROR
4 Septiembre 2012, 03:51 AM
HOLA, TENGO UN PROBLEMA AL REALIZAR ESTE PROGRAMA, ME MARCA ERROR EN LA SIGUIENTE PARTE (MARCADA EN NEGRITAS), QUE ERRORES CREEN USTEDES QUE TENGA, O DE QUE FORMA TENGO QUE PONER LA FORMULA

/*FisiCalc*/
#include<stdio.h>
#include<conio.h>

int main()
   {
        void Presion1(void);
         printf("Programa FisiCalc.");
         printf("\nPulse una tecla para continuar.");
         getch();
         Presion1();
         printf("\nPulse una tecla para terminar.");
         getch();
         return 0;
   }

   void Presion1(void)
   {
         float P2, v2, t1, t2, v1;
         printf("\nLa Presion2 (P2) es:");
         scanf("%f",&P2);
         printf("\nEl volumen2 (v2) es:");
         scanf("%f",&v2);
         printf("\nEl tiempo1 (t1) es:");
         scanf("%f",&t1);
         printf("\nEl Tiempo2 (t2) es:");
         scanf("%f",&t2);
         printf("\nEl Volumen1 (v1) es:");
         scanf("%f",&v1);
         P1=P2*v2*t1/t2*v1;       
         printf("\nLa Presion1(P1)es: %f mm de Hg", P1);
         printf("\nPulse una tecla para continuar,");
         getch();
         return;
   }

   }