The goal is to try to find on the college campus possible locations for building a new building. The user will type the matrix that represents the college plan.
R = Ruas
P = Prédios
V = Área Verde
E = Estacionamento
R R R R R R R R R R R R...
I have this TXT:
1,2,4,8,7
45,18,27,35,44
17,45,2,8,6
And I want to read this array to a Java array. Here is the code:
public static void main(String[] args){
double[][] pesos = null;
String valorFinal = "";...
Hello I have an array that is formed by a set of random numbers. Yet some of these sets of numbers overlap. What can I do to prevent this from happening?
void ransnipa(int (*board)[40]){
srand(time(NULL));
int k;
int x[snipa];...
Could anyone help me solve this problem?
I installed webmatrix3, but when running the program with the code:
First example
Testing PHP
google opens the local host: link as the error 403.14, I...
I have the following code:
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
struct cadastro_palestra
{
char nome[50];
char cpf[13];
char email[70];
};
int main ()
{
setlocale(LC_ALL, "Portuguese");...
Make a program that randomly generates 20 integers in the range of 0 through 999 and fills in an array of 5 x 4 size. Show the matrix, then show the transposed matrix (reverse row with column).
I've already been able to populate the array...
In the example below I have a class in java that will fetch data from a certain excel file. All this part of fetching the file the program does, but now needed that this data be stored in an array. I do not know how to do it.
public class UniF...
I need to use Google's Distance Matrix and read the API plan and wanted to know if I understood correctly.
Google gives you "200 USD" / Month so you can make 40k requests per month, charging the surplus.
Is that right?
Are these "200 US...
This next piece of error code, does not read the user data to allocate in the 5x2 array, I can not find the problem
int linha=0, coluna=0;
int matriz[5][2];
for(linha=0;linha < 5; linha++){
for(coluna=0;coluna < 2; col...