top of page
Jheferson Escajadillo Yaranga
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
//DECLARACION
int Vi,a,t;
double Vf,d,Vf2;
//ASIGNACION
cout<<"Ingresar el Tiempo : ";cin>>t;
cout<<"Ingresar Velocidad Inicial : ";cin >>Vi;
cout<<"Ingresar Aceleracion : ";cin >>a;
//PROCESO
Vf = Vi+(a*t);
d = ((Vi+Vf)/2)*t;
Vf2 = pow(Vi,2)+2*a*d;
//Resultado
cout<<"LA Velocidad Final al Cuadrado es : " <<Vf2<<endl;
cout<<"La Distancia es : "<<d<<endl;
cout<<"La Velocidad Final es : "<<Vf<<endl;
}


Formula rmv
bottom of page