How to use the code session document.querySelector to change / change the background image of a page <body>...</body>
Ex:
var imagem_lista = [
"http://static.gamespot.com/uploads/original/1179/11799911/2324138-...
I am separating a string in array if there is a certain preposition in it ('with', 'to', 'by'), but I want to return the string containing the delimiter as well, ie the preposition. >
Using preg_split and explode, I have the same and unsatisfa...
I have a database composed of two vectors: u=(a,b,c) and v=(1,2,3)
In another worksheet, I have two blank vectors x and y . I need to complete the input of x (from u ), the code returns the corresponding e...
I have a problem with a facul exercise.
Basically it is a store system, where I enter with the amount of stores, the quantity of products, the name of the products, and the quantity of products in each store.
So far so good, my problem is in the...
Good evening, I'm having difficulty accessing and modifying an array of main class objects within a switch in the view class.
The array is declared as such in the main:
public class Controle {
public static void main(String[] args) {...
Assuming I have the following array
array(
'chave1' => 'valor1',
'chave2' => array(
'chave3' => 'valor2',
'chave4' => array(
'chave5' => 'valor3'
)
))
And in this array I need to set the value of key 5, bu...
Hello, I would like to know why it is not going, I have looked in many places but can not find
in C
#include <stdio.h>
typedef struct ficha_pessoal{
int idade;
char sexo;
int CPF [11];
int CPFc [3];
float salario;...
Well, I would like to make a game in C "console" but I have a question ....
Basically the idea is to have a character that goes forward in a labyrinth thanks to the user, if the user type "right" the character moves to the right etc.
I imagin...
I'm creating an array with a list of data in javascript:
var myArray = gvSortingListagemGARs.keys;
Where I have the result:
[278, 279, 280, 281, 282]
That are id's of elements of a Devexpress table. Now I'm trying to pas...