This file contains hidden or 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
using System; | |
// REQUIERE LA REFERENCIA System.Data | |
using System.Data; | |
// REQUIERE LA REFERENCIA MySql.Data | |
using MySql.Data.MySqlClient; | |
using System.IO; | |
/* |
This file contains hidden or 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 <iostream> | |
using namespace std; | |
int main() | |
{ | |
for (int i=0; i < 4; i++) | |
{ | |
for (int j=0; j < 5; j++) | |
cout << "* "; | |
cout << endl; |
This file contains hidden or 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 <iostream> | |
using namespace std; | |
int main() | |
{ | |
int filas,columnas; | |
cout << "Cuantas filas necesita: "; | |
cin >> filas; | |
cout << "Cuantas columnas necesita: "; | |
cin >> columnas; |
This file contains hidden or 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 <iostream> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
using namespace std; | |
int main() | |
{ | |
char map[32]; | |
int validar=0; |
This file contains hidden or 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 <iostream> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <locale.h> | |
using namespace std; | |
struct Player | |
{ | |
string name; |
This file contains hidden or 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 <iostream> | |
#include <stdio.h> | |
#include <string> | |
#include <locale.h> | |
using namespace std; | |
class Crypto | |
{ | |
public: | |
Crypto(); |
This file contains hidden or 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 <iostream> | |
#include <stdio.h> | |
#include <stdlib.h> | |
using namespace std; | |
int main() | |
{ | |
int conjunto[25][25]; | |
int nFilas=8; | |
int nColumnas=12; |
This file contains hidden or 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
/* | |
* Programa: ALGORITMO K-MEANS | |
* Revision: 2016-11-24 13:19:00 | |
* Numero de revision: 27 | |
* Compilador: GCC (Linux) | |
**/ | |
#include <iostream> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <cmath> |