PROGRAMAS PRIMER PARCIAL ESIME
Enviado por Diegoviterbo • 8 de Octubre de 2019 • Práctica o problema • 2.063 Palabras (9 Páginas) • 189 Visitas
PROGRAMAS PRIMER PARCIAL ESIME ZACATENCO
INGENIERIA EN COMUNICACIONES Y ELECTRONICA
FECHA 18/09/2019
MATRIZ
/*
INGENIERIA EN COMUNICACIONES Y ELECTRONICA
ESIME ZACATENCO
*/
#include
#define DIM 3
using namespace std;
void leer_matriz(float A[DIM][DIM])
{ int i,j;
printf("Datos de tu matriz: ");
for(i=0;i
{ printf("\nDatos de la fila %d:", i+1);
for (j=0;j
scanf("%f", &A[i][j]);
}
}
void escribir_matriz(float A[DIM][DIM])
{ int i,j;
printf("Datos de tu matriz: \n");
for(i=0;i
{ printf("\nDatos de la fila %d:", i+1);
for (j=0;j
printf("\t%f", A[i][j]);
}
}
int main()
{
float A[DIM][DIM];
leer_matriz(A);
escribir_matriz(A);
return 0;
}
SUCESION FIBONACCI
#include
int main()
{
int i , n, x=0 , y=1 , z=1;
do{
printf ("Digite el numero de elementos: ");
scanf ("%i",&n);
}while(n<=0);
printf ("1,");
for (i=1;i
z= x + y ;
x = y ;
y = z;
printf ("%i,",z);
}
return 0;
}
ECUACION CUADRATICA
/*
Escuela Superior de Ingernieria Mecanica y Electrica
Fundamentos de Programacion
*/
#include
#include
#include
int main ()
{
//Programa para calcular la formula general
double a,b,c,x1,x2;
printf ("Ecuaciones cuadraticas, o lineales.\n\n");
printf("Ingrese el valor de a:");
scanf ("%lf",&a);
if (a!=0)//ax2+...
{
printf("Ingrese el valor de b:");
scanf ("%lf",&b);
if (b!=0)//ax2+bx+...=0
{
printf("Ingrese el valor de c:");
scanf ("%lf",&c);
if (c!=0)//ax2+bx+c=0
{
x1 = (-b+sqrt (b*b - 4*a*c ))/(2*a);
x2 = (-b-sqrt (b*b - 4*a*c ))/(2*a);
printf ("El valor de x1= %lf \n",x1);
printf ("El valor de x2= %lf \n",x2);
...