EJERCICIOS DE PROGRAMACION..
Enviado por Alonso Martinez Toral • 20 de Septiembre de 2016 • Biografía • 300 Palabras (2 Páginas) • 165 Visitas
1)
%ESTE PROGRAMA SIRVE PARA CALCULAR EL AREA DE UN CUADRADO
%ELABORADO POR VICTOR MANUEL ABURTO RODRIGUEZ
clc % limpia pantalla
clear all % esta instruccion limpia todas las variables
clear all % esta instruccion cierra todos los archivos
lado=0; % esta intruccion sirve para inicializar la variables lado
lado=0; % esrta instruccion sirve para inicializar la variable lado
area=0;
lado=input('de por favor el valor dela lado'); % esta istruccion sirve para introducir un valor
lado=input('de por favor el valor de la lado');
area=(lado*lado);
disp(area);
2)
%ESTE PROGRAMA SIRVE PARA CALCULAR EL AREA DE UN RECTANGULO
%ELABORADO POR VICTOR MANUEL ABURTO RODRIGUEZ
Clc % limpia pantalla
clear all % esta instruccion limpia todas las variables
clear all % esta instruccion cierra todos los archivos
base=0;
altura=0;
área=0;
altura=input('de por favor el valor dela altura'); % esta istruccion sirve para introducir un valor
base=input ('de por favor el valor de la base');
área=(altura*base);
disp(area);
3)
ESTE PROGRAMA SIRVE PARA CALCULAR EL TIEMPO QUE SE HACE UN TRAILER
%ELABORADO POR VICTOR MANUEL ABURTO RODRIGUEZ
clc %limpiaz pantalla
clear all %esta instruccion limpia todas las variables
clear all %cierra todos los archivos
distancia=0;
tiempo=0;
velocidad=0;
velocidad=input('Deme el valor dela velocidad');
distancia=input('Deme el valor dela distancia');
tiempo=(distancia/velocidad);
disp(tiempo); %salida al resultado
4)
ESTE PROGRAMA SIRVE PARA CALCULAR LA VELOCIDAD DE UNA PASAJERA
%ELABORADO POR VICTOR MANUEL ABURTO RODRIGUEZ
clc %limpiaz pantalla
clear all %esta instruccion limpia todas las variables
clear all %cierra todos los archivos
distancia=0;
tiempo=0;
velocidad=0;
tiempo=input('Deme el valor del tiempo');
tiempo=input('Deme el valor del tiempo');
velocidad=( distancia*tiempo);
disp(velocidad); %salida al resultado
5)
ESTE PROGRAMA SIRVE PARA CALCULAR LA DENSIDAD DE UNA SUSTANCIA
%ELABORADO POR VICTOR MANUEL ABURTO RODRIGUEZ
clc %limpiaz pantalla
clear all %esta instruccion limpia todas las variables
clear all %cierra todos los archivos
densidad=0;
masa=0;
volumen=0;
masa=input('Deme el valor dela masa');
...