top of page

#include <iostream>
using namespace std;
#include <math.h>


int main()
{
    //Declaracion 
    int Vf, Vo ,a ,t ;
    double D ,V; 
    // Asignacion 
    cout<< "EJERCICIOS DE FISCA \n \n";
    cout<< "Ingrese la Velocidad Inicial : " ; cin>>Vo;
    cout<< "Ingrese la Aceleracion: " ; cin>>a;
    cout<< "Ingrese el tiempo : " ; cin>>t;
    //Proceso
    Vf = Vo + a * t ;
    D = ((Vf + Vo ) * t )/ 2;
    V = (Vf + Vo) / 2 ;
    //Resultado
    cout<< "La velocidad Final es  : "<< Vf << endl;
    cout<< "La Distancia es   : "<< D << endl;
    cout<< "La velocidad media es  : "<< V<< endl;
    //systeam ("pause"):
              return 0;
    }

EJERCICIOS FISICA

#include <iostream>
using namespace std;
#include <math.h>


int main()
{
    //Declaracion 
    int N,I,R,OMEGA,Dif_Inten,Dif_Tiempo;
    double L,H,V;
    
    // Asignacion 
    cout<< "EJERCICIOS DE CIRCUITOS\n \n";
    cout<< "Ingrese El Numero de vueltas de una bobina : " ; cin>>N;
    cout<< "Ingrese La intensidad : " ; cin>>I;
    cout<< "Ingrese La Resistencia: " ; cin>>R;
    cout<< "Ingrese Flujo Magnetico: " ; cin>>OMEGA;
    cout<< "Ingrese La Diferencial de Intensidad: " ; cin>>Dif_Inten;
    cout<< "Ingrese La diferencial de tiempo: " ; cin>>Dif_Tiempo;
    
    //Proceso
    L = (OMEGA*N)/I  ;
    H =(N*I)/L; 
    V= I*R+L*(Dif_Inten/Dif_Tiempo);
   
    //Resultado
    cout<< "Inductancia : "<< L << endl;
    cout<< "Intensidad de campo den Amperio: "<< H<< endl;
    cout<< "Voltaje  : "<< V << endl;
   
    //systeam ("pause"):
              return 0;
          }

EJERCICIOS DE CIRCUITOS

bottom of page