#include<iostream>
using namespace std;
int main()
{
// DECLARACION
int opcion;
//MENSAJES
cout<<”*****FISICA I*****\n
”;
cout<<”1) DISTANCIA EN M.R.U. \n”;
cout<<”2) VELOCIDAD EN M.R.U. \n”;
cout<<”3) TIEMPO EN M.R.U.\n”;
cout<<”4) I DISTANCIA EN M.R.U.V.\n”;
cout<<”5) II DISTANCIA EN M.R.U.V.\n”;
cout<<”6) VELOCIDAD FINAL EN M.R.U.V.\n”;
cout<<”7) I ALTURA EN CAIDA LIBRE \n”;
cout<<”8) II ALTURA EN CAIDA LIBRE \n”;
cout<<”9) VELOCIADA FINAL EN CAIDA LIBRE\n”;
cout<<”10) ACELERACION\n”;
cout<<”11) GRAVEDAD\n”;
cout<<” SALIR (0) \n”;
cout<<”*****************\n
\n”;
// ASIGNACION
cout<<”INGRESE UNA OPCION: ”; cin>>opcion;
// PROCESAR
switch (opcion)
{
case 1:
{
//DECLARACION
int v, t ,d;
cout<<” Ingrese la
velocidad m/seg.: ”;
cin>>v;
cout<<” Ingrese el
tiempo seg.: ”;
cin>>t;
//PROCESO
d=v*t;
//RESULTADO
cout<<” La
distancia es: ”<<d<<” m”;
cout << endl;
break;
}
case 2:
{
//DECLARACION
int v, t ,d;
cout<<” Ingrese la
distancia m.: ”;
cin>>d;
cout<<” Ingrese el
tiempo seg.: ”;
cin>>t;
//PROCESO
v=d/t;
//RESULTADO
cout<<” La velocidad es: ”<<v<<”
m/seg”;
cout << endl;
break;
}
case 3:
{
//DECLARACION
int v, t ,d;
cout<<” Ingrese la
distancia m: ”;
cin>>d;
cout<<” Ingrese la
velocidad m/seg.: ”;
cin>>v;
//PROCESO
t=d/v;
//RESULTADO
cout<<” El tiempo es:
”<<t<<” seg.”;
cout << endl;
break;
}
case 4:
{
//DECLARACION
int Vo, t , a, d;
cout<<” Ingrese la
velocidad inicial m/seg.: ”;
cin>>Vo;
cout<<” Ingrese el
tiempo seg.: ”;
cin>>t;
cout<<” Ingrese la
aceleración m/seg².: ”;
cin>>a;
//PROCESO
d=Vo*t+a/2*(t*t);
//RESULTADO
cout<<” La distancia
es: ”<<d<<” m”;
cout << endl;
break;
}
case 5:
{
//DECLARACION
int Vo, t , Vf,
d;
cout<<” Ingrese la velocidad
inicial m/seg.: ”;
cin>>Vo;
cout<<” Ingrese el
tiempo seg.: ”;
cin>>t;
cout<<” Ingrese la
velocidad final m/seg².: ”;
cin>>Vf;
//PROCESO
d=(Vo+Vf)/2*t;
//RESULTADO
cout<<” La
distancia es: ”<<d<<” m”;
cout << endl;
break;
}
case 6:
{
//DECLARACION
int Vo, t , a, Vf;
cout<<” Ingrese la
velocidad inicial m/seg.: ”;
cin>>Vo;
cout<<” Ingrese el
tiempo seg.: ”;
cin>>t;
cout<<” Ingrese la
aceleración m/seg².: ”;
cin>>a;
//PROCESO
Vf=Vo +a*t;
//RESULTADO
cout<<” La velocidad
final es: ”<<Vf<<” m/seg.”;
cout << endl;
break;
}
case 7:
{
//DECLARACION
int Vo, t , g, H;
cout<<” Ingrese la
velocidad inicial m/seg.: ”;
cin>>Vo;
cout<<” Ingrese el
tiempo seg.: ”;
cin>>t;
cout<<” Ingrese la gravedad
m/seg².: ”;
cin>>g;
//PROCESO
H=Vo*t+g/2*(t*t);
//RESULTADO
cout<<” La altura
es: ”<<H<<” m”;
cout << endl;
break;
}
case 8:
{
//DECLARACION
int Vo, t , Vf,
H;
cout<<” Ingrese la velocidad
inicial m/seg.: ”;
cin>>Vo;
cout<<” Ingrese el
tiempo seg.: ”;
cin>>t;
cout<<” Ingrese la
velocidad final m/seg².: ”;
cin>>Vf;
//PROCESO
H=(Vo+Vf)/2*t;
//RESULTADO
cout<<” La altura
es: ”<<H<<” m”;
cout << endl;
break;
}
case 9:
{
//DECLARACION
int Vo, t , g, Vf;
cout<<” Ingrese la
velocidad inicial m/seg.: ”;
cin>>Vo;
cout<<” Ingrese el
tiempo seg.: ”;
cin>>t;
cout<<” Ingrese la
gravedad m/seg².: ”;
cin>>g;
//PROCESO
Vf=Vo +g*t;
//RESULTADO
cout<<” La
velocidad final es: ”<<Vf<<” m/seg.”;
cout << endl;
break;
}
case 10:
{
cout<<”PUEDE SER POSITIVA O NEGATIVA”;
break;
}
case 11:
{
cout<<”SEGÚN LO EXPRESE EL PROBLEMA”;
break;
}
//OTHERWISE (CASO CONTRARIO)
default:
cout<<”NO ES UNA FORMULA DE FISICA I”;
}
cout << endl;
system( "pause" );
}
No hay comentarios:
Publicar un comentario