Here you can find my code for WSQ13:
https://github.com/finntec/wsq13.git
It was easy after knowing how the babylonian method worked:
link to video that explains babylonian method:
link to my code:
https://github.com/cortesivan96/WSQs/blob/master/babylonian%20method%20(WSQ13)
Para este WSQ vi un video en youtube sobre el método babilónico. Logré deducir casi todo con mi propia lógica pero en un momento llegué a atascarme. Por suerte estaba haciéndola durante mi clase de programación y Ken me dio un empujoncito que me ayudó a ingeniármelas. Aquí está el código. //Babylonian Method #include <iostream> […]
I wrote a program that calculates the square root of a number using the Babylonian method. A function baby receives any number and returns a float. https://github.com/DianaJU/Write/blob/master/baby.py
Short and simple. Here’s my code: https://github.com/Dragv/wsq13/tree/master
GitHub code link
Here is my code 😀
https://github.com/FernyAlanis/wsq11-17/blob/master/WSQ13
Foto: https://flic.kr/p/sNh6BL Este WSQ estuvo fácil, solo tuve que ver de que trataba el método y lo pude hacer. Aqui esta el link de mi código: https://github.com/BrayanGc/Codigos/blob/master/BaMe.cpp
#include <iostream> using namespace std; float raiz (float a){ float x = a / 2; for (int i=0; i <20; i++){ x = .5*(x+(a/x)); } return x; } int main (){ float a, r; cout << “Escribe un numero al que quieras sacarle su raiz cuadrada “; cin >> a; float s = raiz (a); […]