Posts by Marcos Ranes • 1 point
3 posts
-
-2
votes3
answers259
viewsA: Problem with recursive function, 2 parameters
The full Solution in C# using System; class Power{ static void Main(string[] args){ long number1, number2, result; Console.Write("Type the BASE number: "); number1 =…
-
0
votes4
answers2799
viewsA: String reading with two or more names
Hey Friends I know the post is old, but I will post here a solution for anyone starting in C++ and for some reason came here... copy and paste this also in the line above int x: setlocale(LC_ALL,…
-
0
votes2
answers941
viewsA: How to turn a String list into a Float list?
import requests from bs4 import BeautifulSoup page = requests.get('http://dolarhoje.com') soup = BeautifulSoup(page.content, 'html.parser') dollar =…