top of page

TAREA:  FORMULAS DE FISICA Y  FORMULAS DE ELECTRONICAS

 

​#include <iostream>
using namespace std;

int main ()
{
    
    // declaracion aceleracion y distancia
    int vo, t, vo;
    double vf, a, d;
    //asignacion
    cout<<"ingrese velocidad inicial"; cin>>vo;
    cout<<"ingrese el tiempo"; cin>>t;
    cout<<"ingrese aceleracion"; cin>>a;
    //proceso
    vf=vo+a*t
    a=vf-vo/t
    d=vo*t+1/2*a*t
    
    //resultados
    cout<<"la velocidad final es : "; <<vf<< endl;
    cout<<"la aceleracion es : "; <<a<<endl;
    cout<<"el desplazamiento es : "; <<d<< endl;
    
    system ("pause");
    return 0;
    
}
    //fin del programa

 

 

 

 

 

 

#include <iostream>
using namespace std;

int main ()
{
    
    // declaracion la ley de ohm
    int v;
    double i, r;
    //asignacion
    cout<<"ingrese voltaje "; cin>>v;
    cout<<"ingrese la resistencia"; cin>>r;
    //proceso
    v=i*r
    i=v*r
    r=v/i
  
    
    //resultados
    cout<<"la coorriente es : "; <<i<< endl;
    cout<<"la resistencia es : "; <<r<<endl;
    cout<<"el voltaje es : "; <<v<<endl;
    
    system ("pause");
    return 0;
    
}
    //fin del programa

#include <iostream>

#include <cmath>

using namespace std;

int main()

{

   //FORMULA DE FISICA:MRUA

  //DECLARACION

  int Vf, Vi, t;

  double a, h, d;

  //Asignacion

  cout<<"Ingrese la Velocidad Final:"; cin>>Vf;

  cout<<"Ingrese el Velocidad Inicial:"; cin>>Vi;

  cout<<"Ingrese el tiempo:"; cin>>t;

  //Proceso

  a = (Vf-Vi)/t;

  h = Vi*t+(a*pow(t,2))/2;

  d = ((Vi+Vf)/2)*t;

  //Resultado

  cout<<"La aceleracion es:" << a << endl;

  cout<<"La altura es:"<< h << endl;

  cout<<"La distancia es:"<< d << endl;

  //system ("pause");

  return 0;

} //Fin del Programa

#include <iostream>

#include <cmath>

#include <math.h>

using namespace std;

int main()

{

//FORMULA DE CIRCUITOS ELETRICOS: INDUCTANCIAS

//DECLARACION

int Num_Espiras, I, Perm_Mag, Area_Secc, Long_Bobina, Diferencial_I, Diferencial_Tiempo;

double Vl, L, Int_Campo_Amp_Vuelta_Metro;

//Asignacion

cout<<"Ingrese el Numero de Espiras:"; cin>>Num_Espiras;

cout<<"Ingrese la Permeabilidad Magnetica del Material:"; cin>>Perm_Mag;

cout<<"Ingrese el Area de la Seccion Transversal del Nucleo:"; cin>>Area_Secc;

cout<<"Ingrese la Longitud de Lineas de Flujo o de Bobina:"; cin>>Long_Bobina;

cout<<"Ingrese la Diferencial de Corriente:"; cin>> Diferencial_I;

cout<<"Ingrese la Diferencial de Tiempo:"; cin>> Diferencial_Tiempo;

cout<<"Ingrese la Intensidad de Corriente:"; cin>> I;

//Proceso

L = (pow(Num_Espiras,2)*Perm_Mag*Area_Secc)/Long_Bobina;

Vl = L*(Diferencial_I)/(Diferencial_Tiempo);

Int_Campo_Amp_Vuelta_Metro = (Num_Espiras*I)/Long_Bobina;

//Resultado

cout<<"La Inductancia es:" << L << endl;

cout<<"La Diferencia Potencial del Inductor es:"<< Vl << endl;

cout<<"La Intensidad del Campo Amperio-Vuelta /metro es:"<< Int_Campo_Amp_Vuelta_Metro << endl;

//system ("pause");

return 0;

} //Fin del Programa

bottom of page