Ejercicios Lenguaje de Programacion
Ejercicios Lenguaje de Programacion
Ejercicios Lenguaje de Programacion
Lenguaje de Programacin
ESTUDIANTE: Rene Suaa Coila
SEMESTRE: III
1. Muestre el valor de x despus de ejecutar cada una de las
siguientes instrucciones:
a) x =fabs( 7.5 );
b) x = floor( 7.5 );
c) x = fabs( 0.0 );
d) x = ceil( 0.0 );
e) x = fabs( -6.4 );
f) x = ceil( -6.4 );
g) x =ceil( -fabs( -8 + floor( -5.5 ) ) )
#include <iostream>
#include <math.h>
using namespace std;
double valor1 (double x)
{
cout<< " El valor de x=fabs(7.5) "<< " es ";
return fabs (x);
}
int valor2 (double x)
{
cout << " El valor de x = floor( 7.5 ) "<< " es ";
return floor(x);
}
int valor3 (double x)
{
cout<< " EL valor de x = fabs( 0.0 ) "<< " es ";
return fabs (x);
}
int valor4 (double x)
{
cout << " El valor de x = ceil( 0.0 ) " << " es: ";
return ceil(x);
}
int valor5 (double x)
{
cout<< " EL valor de x = fabs( -6.4 ) "<< " es: ";
return fabs (x);
}
int valor6 (double x)
{
cout << " El valor de x = ceil( -6.4 ) "<< " es: ";
return ceil(x);
}
int valor7 (double x)
{
cout<< " El valor de x =ceil( -fabs( -8 + floor( -5.5 ) ) ) "<<" es:
";
return ceil(-fabs(-8+floor(x)));
}
int main ()
{
cout<<valor1(7.5)<<endl;
cout<<valor2(7.5)<<endl;
cout<<valor3(0.0)<<endl;
cout<<valor4(0.0)<<endl;
cout<<valor5(-6.4)<<endl;
cout<<valor6(-6.4)<<endl;
cout<<valor7(-5.5)<<endl;
}
float calcularCargo(float x)
{
cout<<"\t"<<x;
if((float)x <=3)
{
cout<<"\t"<<2.0;
return 2.0;
}
else
{
if((int)x == 24)
{
cout<<"\t"<<10.0;
return 10.0;
}
else
{
cout<<"\t"<<(((float) x-3)*0.5)+2;
return (((float)x-3)*0.5)+2;
}
}
}
b) 1
100
c) 0
d) 1000
1112
e) 1
f) 3
11
#include <ostream>
#include <cstdlib>
#include <iomanip>
using namespace std;
int main()
{
cout<< " a: ";
cout<<setw(1)<<(1+rand()%2)<<endl;
cout<< " b: ";
cout<<setw(1)<<(1+rand()%100)<<endl;
cout<< " c: ";
cout<<setw(1)<<(0+rand()%9)<<endl;
cout<< " d: ";
cout<<setw(1)<<(1000+rand()%1112)<<endl;
cout<< " e: ";
cout<<setw(1)<<(-1+rand()%1)<<endl;
cout<< " f: ";
cout<<setw(1)<<(-3+rand()%11)<<endl;
}
{
if(funcion(1, 3))
{
cout << "Si son multiplos!";
}
else
{
cout << "No son multiplos!";
}
return 0;
}