Está en la página 1de 5

MODULO DE YOUNG

#include <iostream> using namespace std; int main() { int fuerza; int longitud; int area; int deformacion; int E; fuerza = 27; longitud = 2; area = 9; deformacion = 1; E = (fuerza * longitud) / (area * deformacion ); cout << " alexander escobar cisneros " << endl; cout << " modulo de young " << endl; cout << fuerza << "*" << longitud << "/" << area << "* " << deformacion << " = " << E << endl; system(" pause "); return 0; }

VELOCIDAD FINAL
# include <iostream> using namespace std; int main () { int vi; int aceleracion; int tiempo; int vf; vi = 95; aceleracion = 18; tiempo = 6; vf = (vi) + (aceleracion*tiempo); cout << " alexander escobar cisneros " << endl; cout << " velocidad final " << endl; cout << vi << " + " << aceleracion << " * " << tiempo << " = " << vf << endl; system ( " pause " ); return 0; }

ALTURA DE UN CUERPO
#include <iostream> using namespace std; int main() { int vi; int tiempo; int gravedad; int altura; vi = 9; tiempo = 11; gravedad = 10; altura = ( vi * tiempo ) + ( gravedad * tiempo * tiempo / 2 ); cout << " alexander escobar cisneros " << endl; cout << " altura de un cuerpo " << endl; cout << vi << " * " << tiempo << " + " << gravedad << " * " << tiempo << " * " << tiempo << " / 2 " << " = " << altura << endl; system( " pause " ); return 0; }

INTENSIDAD DE CORRIENTE
#include <iostream> using namespace std; int main() { int carga; int tiempo; int Ic; carga = 50; tiempo = 10; Ic = carga / tiempo; cout << " alexander escobar cisneros " << endl; cout << " intensidad de corriente " << endl; cout << carga << " / " << tiempo << " = " << Ic << endl; system( " pause " ); return 0; }

INTERES SIMPLE
#include <iostream> using namespace std; int main() { int capital ; int tasa; int tiempo; int Interes ; capital = 2500; tasa = 1; tiempo = 8; Interes = capital * tasa * tiempo; cout << " alexander escobar cisneros " << endl; cout << " interes simple " << endl; cout << capital << " * " << tasa << " * " << tiempo << " = " << Interes << endl; system( " pause " ); return 0; }

ENERGIA POTENCIAL ELASTICA


#include <iostream> using namespace std; int main() { int k ; int delta; int Epe; k = 5; delta = 4; Epe = k * delta * delta / 2 ; cout << " alexander escobar cisneros " << endl; cout << " energia potencial elastica " << endl; cout << k << " * " << delta << " * " << delta << " /2 = " << Epe << endl; system( " pause " ); return 0; }

ENERGIA CINETICA
#include <iostream> using namespace std; int main() { int masa ; int velocidad; int Ec; masa = 7; velocidad = 10; Ec = masa * velocidad * velocidad / 2 ; cout << " alexander escobar cisneros " << endl; cout << masa << " * " << velocidad << " * " << velocidad << " /2 = " << Ec << endl; system( " pause " ); return 0; }

ENERGIA POTENCIAL GRAVITATORIA


#include <iostream> using namespace std; int main() { int masa; int gravedad; int altura; int Epg; masa = 4; gravedad = 10; altura = 6; Epg = masa * gravedad * altura; cout << " alexander escobar cisneros " << endl; cout << " energia potencial gravitatoria " << endl; cout << masa << " * " << gravedad << " * " << altura << " = " << Epg << endl; system( " pause " ); return 0; }

TRABAJO
#include <iostream> using namespace std; int main() { int fuerza ; int distancia; int W; fuerza= 18; distancia = 24; W = fuerza * distancia; cout << " alexander escobar cisneros " << endl; cout << " TRABAJO " << endl; cout <<fuerza << " * " << distancia << " = " << W << endl; system( " pause " ); return 0; }

DENSIDAD
#include <iostream> using namespace std; int main() { int d; int masa; int volumen; masa = 27; volumen = 2; d = masa / volumen; cout << " alexander escobar cisneros " << endl; cout << " densidad " << endl; cout << masa << "/" << volumen << " = " << d << endl; system(" pause "); return 0; }

También podría gustarte