Posts by Pedro Abreu Maia • 37 points
2 posts
-
-3
votes2
answers143
viewsQ: I need to receive data in PHP page and keep the page running
I’m having difficulties in web development work, which asks for the following: 1 - Build a page that draws an integer number from 1 to 10 and ask the user what is the "imagined". 2 - Your page shall…
phpasked Pedro Abreu Maia 37 -
3
votes1
answer79
viewsQ: Code works sometimes yes and sometimes no
This is my code: #include <iostream> #include <cstdlib> #include <ctime> using namespace std; void exchange (int *arr, int i, int j) { if (i == j) return; int aux = arr[j]; arr[j]…