martes, 19 de noviembre de 2013

1; TOMA DE DECICIOINES SIMPLES

EJERC. 15
Para hallar la velocidad

#include<iostream>
using namespace std;

int main()
{
    int D, t;
    float v;
    
cout<<"Ingrese el espacio: ";cin>>D;
cout<<"Ingrese el tiempo: ";cin>>t;
cout<<endl;
if(t>0)
{
       v=e/t;
       cout<<"La velocidad es: ";
cout<<v;
}
else
{
    cout<<"La velocidad es indeterminada";
}

cout<<endl;
system ("pause");
return 0;
}

No hay comentarios:

Publicar un comentario