top of page


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;
          }

​

CIRCUITOS

ELASTICIDAD

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

int main(){
    cout<<"Calculo De Elasticidad"<<endl;
    int r,d,a,pi,y,f,l,ac,e,kg,mm,cu;
    cout<<"Ingrese el diametro del cabled de cobre en mm: \n";cin>>d;
    cout<<"Ingrese ingrese el esfuerzo: \n";cin>>e;
    cout<<"Ingrese la longitud del cable de cobre en mm: \n";cin>>l;
    r=d/2,
    cout<<"\nEl radio es: \n"<<r<<endl;
    cout<<"";
    pi=3.1416,
    ac=20000,
    a=pi*r*r,
    cout<<"\nEl area es: \n"<<a<<endl;
    cout<<"";
    f=e*a,
    cout<<"\nLa fuerza es: \n"<<f<<endl;
    cout<<"";
    y=(f*l)/(a*ac),
    cout<<"\nLa elasticidad es: \n"<<y<<endl;
    cout<<"";     
    
    return 0;
}

bottom of page