This image is similar to an array. It groups things. (I am tired, sorry). Here is WSQ 10https://github.com/bsolisale/WSQQ/blob/master/WSQ10
It cost me a little bit of trouble. Here is the link to my code: https://github.com/cortesivan96/WSQs/blob/master/List%20(WSQ10)
https://github.com/estebanpinal/WSQ/blob/master/WSQ10
para este WSQ recomiendo accerder a lynda y ver el tutorial de arrys.

I made this WSQ using arrays, that was pretty easy because I asked for a definited number of values (10). …

I did’nt summit this at time, sorry about that 🙁 Github code: https://github.com/luisduartepalacios/WSQ10/blob/master/WSQ10.cpp

So many items, we might forget something… Using lists with arrays and vectors is quite easy, but here we need to combine that knowledge with our knowledge of functions and mathematics… oh and C++. Almost missed that one. Doing it with arrays was easy, so I wanted to do it with vectors and asked for … Continue reading WSQ10 →

This was hard at the beginning but then I understand everything, it is just something that you need to practice, I used vectors in this one. This video (https://www.youtube.com/watch?v=SGyutdso6_c) helped me a lot to understand about vectors. Here is my… Continue Reading →

//WSQ10 List #include <iostream> using namespace std; int main(){ cout<<“¿Cuantos valores quieres en la lista?”<<endl; int TAM; cin>>TAM; cout<<“Dame “<< TAM <<“valores “<<endl; float lista[TAM]; int i; int x; float d=0; float s=0; for (i=0; i<TAM; i++){ cin>> lista[i]; s=s+lista[i]; } cout<<“El total es “<<s<<endl; float p =s/TAM; cout << “El promedio es “<<p<<endl; for […]

First time using lists. Here’s the code: And here’s the test of the code: