Proyecto Final: Calculadora de Derivadas e Integrales.

This is a program we made together Eduardo Morales, Eduardo Barrera and me, José Quiroga. I hope you like it:

Programming-Edmo

Hola a todos!

Este post es sobre mi proyecto final de programación en C++, para lo cual mi equipo y yo decidimos crear una calculadora que pueda resolver integrales y derivadas que el usuario elija. Dicho lo anterior, buscamos la creación de un programa que fuera útil para nosotros y para las personas que quieran utilizarlo, creando el programa con fines prácticos para los estudiantes y sin duda alguna muy amigable y fácil de entender para el usuario. Para ello necesitamos aplicar los conocimientos adquiridos a lo largo del curso, a través del uso de funciones, vectores, librerías, entre otros.

Durante la creación de este proyecto nos enfrentamos a muchísimos problemas, ya que necesitamos crear tres diversos programas para la función del original (INTMAIN), donde pedimos todos los valores al usuario para su uso. Cabe destacar que usamos el software de VISUAL STUDIO 2012 para la creación de nuestro programa…

Ver la entrada original 252 palabras más

Leer Más "Proyecto Final: Calculadora de Derivadas e Integrales."

Quiz 6 Euclides

In this quiz we had to make a program that tells you the greatest common divisor between two integer numbers. So the program asks for the biggest number and then the smallest. For this we have to use the Euclid’s Algorithm: (Wikipedia obviously) The Euclidean algorithm is based on the principle that the greatest common […]

Leer Más "Quiz 6 Euclides"

WSQ 10 List of Numbers

In this WSQ I had to create a program that ask for numbers and then show them as a list, the total, average and standard deviation of them. So I used a for loop with a array to ask for the numbers, the array was the quantity of numbers I would like to use for that program, so […]

Leer Más "WSQ 10 List of Numbers"

Quiz 3

Now we have the Quiz number 3. In this quiz, first we have to create a program that calculates the distance between two point in a graph using the coordinates (X, Y). The user has to introduce the two points (X1, Y1) and (X2, Y2). In the second program we have to do the Fibonacci […]

Leer Más "Quiz 3"

WSQ09 Factorial

In this program we have to make a loop in which we find the factorial number of the one ingress by the user. Then we have to ask if he wants to ingress another number to calculate the factorial. The factorial function (symbol: !) means to multiply a series of descending natural numbers. Example: 4! […]

Leer Más "WSQ09 Factorial"

WSQ08 Functions

The functions allow to structure programs in segments of code to perform individual tasks. In this program I´m going to do the same as in the WSQ03, but using functions. You have to enter two numbers and the program will calculate: The difference of the two numbers. The product of the two numbers. The integer […]

Leer Más "WSQ08 Functions"

QUIZ 2

In this Quiz we just had 2 exercises: In the first exercise we had to ask for two numbers (a, b) and show the result of growing the first one to the second one. Example: (a=5, b=2) R=25 We could do this with the function Pow including the <math.h> library, or we can do it […]

Leer Más "QUIZ 2"

WSQ07 Sum of numbers

In this program we can sum the numbers between the ones you say. For example, I you say the first number is 6 and the second 10, the sum will be 40. So this is the code I wrote on XCode: Also the code will be here in this link on GitHub. TC101 WSQ07

Leer Más "WSQ07 Sum of numbers"

Quiz (C++)

The past class we have a quiz. It wasn´t that hard, in fact for me it was very easy. The quiz consisted of 3 programs. The first program calculates the volume of a cylinder, you just have to ingress the radio and the height. Once you enter the data the program makes the calcule and […]

Leer Más "Quiz (C++)"