WSQ10

Gráfico1.JPG

mi código:

#include <iostream>
#include <conio.h>
#include <math.h>
#include <cmath>
using namespace std;
int main()
{
int cont;
float suma, promedio, desvest, sumapot;
float numeros[10];
suma=0;
sumapot=0;
for(cont=1;cont<=10;cont++)
{
cout<<“Dame el numero [“<<cont<<“]: “<<endl;
cin>>numeros[cont];
suma=suma+numeros[cont];
sumapot=sumapot+pow(numeros[cont],2);
}
promedio=suma/10;
desvest=sqrt(1/9*(sumapot-10*pow(promedio,2)));
cout<<“La suma de los numeros es: “<<suma<<“, el promedio es: “<<promedio<<“, la desviacion estandar es: “<<desvest;
return 0;
}

WSQ10 – Lists

This is the WSQ where we need to create a program that ask for 10 numbers and it needs to store it in a list. The program need to show the total, the average and the standard deviation of those numbers.

For this program I used the math library to calculate the square root for the standard deviation.

Here is a picture of the code.

WSQ10

Here is the code running on cygwin.

WSQ10Cyg

Here is the link to the code in Github.

Python/WSQ-10 (Lists)

 

WSQ10 Lists

En esta ejercicio lo que hice fue hacer un ciclo para que el usuario pudiera ingresar 10 números y guardarlos en una lista:

lista=[]
print("Dame 10 numero")
n=0
while n<11:
n=int(input("Dame el numero:"))
lista.append(n)
n=n+1

después cree una función que obtiene la desviación estándar de los números dados:

def rara():
contador=0
for x in lista:
ave=x-promedio
chido=ave*ave
contador=contador+chido
return contador

Para saber como sacar la desviación estándar use este vídeo:

Después solo hice un ciclo para sacar el promedio de los números:
suma=0
for i in lista:
suma += i
promedio=suma/len(lista)
print ("Esta es tu lista ",lista,"El promedio de esta es ",promedio," y el standard deviation es","%.1f" % rara())

Código completo:

lista=[]
print("Dame 10 numero")
n=0
while n<11:
n=int(input("Dame el numero:"))
lista.append(n)
n=n+1
def rara():
contador=0
for x in lista:
ave=x-promedio
chido=ave*ave
contador=contador+chido
return contador
suma=0
for i in lista:
suma += i
promedio=suma/len(lista)
print ("Esta es tu lista ",lista,"El promedio de esta es ",promedio," y el standard deviation es","%.1f" % rara())

Click en la imagen para el ver código en github:

El Compilado:

WSQ10 Lists

Hello again to all my friends!

As you can see, I was busy for a looooong time but here I am posting the homework about lists, a program that will calculate the average, the addition and the standard deviation between the numbers that you want. On this program, the instructions were:

**Create a program that asks the user for 10 numbers  (floating point). Store those numbers in a list. Show to the user the total, average and standard deviation of those numbers.

To got it, you have to use arrays to get the 10 numbers and then you have to put it inside your function. Also I learned a new command, the SETPRECISION one, who is to choose the number of decimals that you want in your answer. To more details, check my code:

list1
list2
list3

To get more information about the set presicion command, check this link: http://www.cplusplus.com/reference/iomanip/setprecision/

And the program running:

listr

And yeeeeeey, it compiles and works😀

Don’t forget to see my enter codes on github:

https://github.com/eduardomrlsg/TC101/blob/master/WSQ10%20LISTS

Regards, EdMo.

promedio, desviación y suma

este codigo dure en entender que era el la desviacion estandar pero…

La desviación estándar mide cuánto se separan los datos.

La fórmula es fácil: es la raíz cuadrada de la varianza. Así que, “¿qué es la varianza?”

la varianza (que es el cuadrado de la desviación estándar) se define así:

Es la media de las diferencias con la media elevadas al cuadrado.

para obtener la varianza se siguen estos pasos:

1. Calcula la media (el promedio de los números)
2. Ahora, por cada número resta la media y eleva el resultado al cuadrado (la diferencia elevada al cuadrado).
3. Ahora calcula la media de esas diferencias al cuadrado

y por ultimo se le saca raíz para obtener la desviación estándar.

 

en el programa en atom, se hace una función externa para cada una de las variables que queremos obtener y después por medio de las formulas ya conocidas obtenemos los resultados.

—code github

Captura de pantalla 2016-04-08 00.25.55

WSQ10 – Lists

Este es el décimo WSQ del curso de programación. Este trabajo consiste en hacer una lista de números para después realizar diferentes operaciones:

  • Suma
  • Promedio
  • Desviación estándar

Para realizar este trabajo se utilizaron vectores, esto fue lo complicado de la actividad por el hecho de no haber estado familiarizado con los vectores, gracias a internet pude comprender lo que son los vectores visitando esta página:

https://ronnyml.wordpress.com/2009/07/04/vectores-matrices-y-punteros-en-c/

y estos videos:

https://www.youtube.com/watch?v=sMi4cxGQr_s

https://www.youtube.com/watch?v=SGyutdso6_c

Utilicé el loop while para poder seguir agregando números a la lista, cada vez que se agrega un número, el programa pregunta si quiere agregar otro número:

WSQ10 - Lists (while)

A continuación se muestran screenshots del código y del programa compilado:

WSQ10 - Lists (1)WSQ10 - Lists (2)WSQ10 - Lists Cygwin

Link Github: WSQ10 – Lists

 

WSQ10

Captura de pantalla 2016-04-07 a las 14.17.31Captura de pantalla 2016-04-07 a las 14.17.48

This code is must of all, arrays and function. We needed to create a program that asks the user for 10 numbers  (floating point). Store those numbers in a list. Show to the user the total, average and standard deviation of those numbers.
Also you will need the cmath library for this one in the Standard deviation. If you don’t know what it is, look in here.

To get the 10 numbers with an array, you will use const int which is a constant integer which will be NUMBER_OF_NUMBERS = 10, so it will not change in the entire code.
To get all the numbers you’ll use an array and the “for loop” and they will save it in x[i].
The use a function func (float numbers[], number_of_numbers) with all the procedure that are required.

 

Here’s my GitHub link for my Code.

WSQ#10

So, moving on and sticking to one of the mexican greatest costumes, doing everything the day before. Here it goes, WSQ#10.

I found info on blogs from classmates and here, and a youtube video because almost no one knows what the hell is the Standard Deviation. wsq10code

And the exe:

wsq10 exe

I gotta keep going, I’ve almost finished all the codes but haven’t updated the blog.

Lists WSQ10

Hello everyone! this WSQ is different, well kind of, what to d0:

Create a program that asks the user for 10 numbers. Store those numbers in a list. Show to the user the total, average and standard deviation of those numbers. I found some very useful videos and tutorials:

 

Captura de pantalla 2016-04-07 a las 10.40.28 a.m.

 

Captura de pantalla 2016-04-07 a las 10.37.25 a.m.

Well finally this is the link for my code in GitHub.