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ú

Temas - MAXCOM-1994

#1
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;
   }

   }