Laboratorio 1

#include <iostream>
#include <math.h>
using namespace std;
int main ()
{
int opcion;
cout<<"Menu:\n";
cout<<"1.tabla de multiplicar.\n";
cout<<"2.aceleracion angular.\n";
cout<<"3.caida libre.\n";
cout<<"4.altura.\n";
cout<<"5.equilibrio.\n";
cout<<endl;
cout<<"Ingrese una opcion: ";
cin>>opcion;
cout<<endl;
switch(opcion)
{
case 1:
{
      double f,g;
       f=1;
       g=5;
   do
    {
        cout<<"Tabla del "<<g<<endl;
        cout<<endl;
        do
        {
            cout<<i<<"*"<<j<<"="<<f*g<<endl;
            f=i+1;
        }while(i<=12);
            g=j+1;
            f=1;
}while(g<=10);
};break;
case 2:
{
       double alfa,wf,wi,t;
       cout<<"Ingrese la velocidad final:";cin>>wf;
       cout<<"Ingrese la velocidad inicial:";cin>>wi;
       cout<<endl;
       t=1;
    do
     {
     cout<<"Para el tiempo de: "<<t<<endl;
      alfa=(wf-wi)/t;  
      cout<<" La aceleracion angular es: "<<alfa<<endl;
      cout<<endl;
       t=t+0.25;
     }while(t<=15);
     cout<<endl;
};break;
 case 3:
{
       double t,wi,g=9.8;
        wi=5;
     do
      {
       cout<<" Para la velocidad inicial de: "<<wi<<endl;
       t=2*wi/g;
       cout<<" El tiempo es: "<<t<<endl;
       cout<<endl;
       wi=wi+0.2;
      }while(wi<=20);
};break;
 case 4:
{
        double h,wi,g=9.8;
         wi=1;
     do
      {
      cout<<" Para la velocidad inicial de: "<<wi<<endl;
        h=pow(wi,2)/g;
       cout<<" La altura es: "<<h<<endl;
       cout<<endl;
       wi=wi+1.5;
      }while(wf<=25);
};break;
case 5:
{
        double n,r,theta,w,pi=3.1415,t;
        theta=10;
        w=50;
     do
      {
            cout<<" PARA EL ANGULO DE THETA : "<<theta<<endl;
            cout<<endl;
            do
            {
            cout<<" con un peso de: "<<w<<endl;
                r=(2*pi*theta)/360;
                t=w/cos(r);
                n=t*sin(r);
                cout<<" La fuerza normal es: "<<n<<endl;
                cout<<endl;
                w=w+20;
            }while(w<=200);
                theta=theta+10;
                w=60;
      }while(theta<=45);
};break;
}// fin  switch
system("pause");
return 0;
}

No hay comentarios.:

Publicar un comentario

laboratorio 5