This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MAX = 0 | |
P = 10000 | |
def identidade(matriz): | |
for i in range(MAX): | |
for j in range(MAX): | |
matriz[i][j] = int((i == j)) | |
def multmat(matrizA, matrizB, matrizC): | |
for i in range(MAX): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <iostream> | |
using namespace std; | |
#define MAX 112 | |
#define P 10000 | |
void identidade(int A[MAX][MAX]) { | |
int i, j; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int insertValorTabela(table *tabela, column *c){ | |
int i = 0, erro = 0; char str[20]; | |
//Carrega dados da tabela para a variavel objetoTabela | |
struct fs_objects objetoTabela = leObjeto(tabela->nome);; | |
//Carrega dados dos atributos da tabela para a variavel campoTabela | |
struct tp_table *campoTabela = tabela->esquema; | |
//percorre os campos |
NewerOlder