Here you can find my code for WSQ14:
https://github.com/finntec/wsq14.git
This was an easy WSQ, Thanks to the help of my buddy Rene
Here is my code:
https://github.com/cortesivan96/WSQs/blob/master/Number%20E%20(WSQ14)
This task was not that hard. We had to make a function that computes an estimation of e, which is a number very used in finances. The trick was our number must have the accuracy given by the user. Here… Continue Reading →
Here’s my WSQ #14 It was easy this time because I did my Quiz 11 before and it was the same thing XP Code: wsq14
Este WSQ está más difícil de lo que parece. Tuve que apoyarme mucho en Ken para hacerlo. Ya lo había hecho para un quiz pero me había equivocado porque entendí mal la forma en la que se daba la precisión. Ken me ayudó a entenderlo y pues aquí está el código que hice. //WSQ14 Euler […]
Here is my code to wsq14, hate euler, love euler, our relationship is complicated 3
My code in github: https://github.com/VanessaBaeza17/wsq14/blob/master/code
After having done the #Quiz11, this WSQ was one of the easier ones, even if it took a lot of digging in StackOverflow and cplusplus.com, looking at details of semi-finished code from beginners (like me, obviously) with the same problems as myself. e’s an awesome number, check the GitHub code link for the WSQ.
Foto: https://flic.kr/p/9ine9G En este WSQ tuve algunos problemas porque al momento de hacer la función me equivocaba en los valores de la variable, pero le pedi ayuda a un amigo y lo arregle. Aquí esta mi código: https://github.com/BrayanGc/Codigos/blob/master/EstE.cpp
#include <iostream> #include <cmath> using namespace std; long double precision( int n, long double e) { if (n == 0){ return ceil (e); } else if (n == 1){ return floor ((e * 10 ) + 0.5) / 10; }else if ( n ==2){ return ceil((e * 100 ) + 0.05) / 100; } else […]