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 <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| typedef struct Nodo | |
| { | |
| char value; | |
| int frequency; | |
| struct Nodo *next; |
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
| // Archivos.cpp : This file contains the 'main' function. Program execution begins and ends there. | |
| // | |
| #include <iostream> | |
| #include <cstdlib> | |
| #include <cstdio> | |
| #include <conio.h> | |
| #include <Windows.h> | |
| using namespace std; |
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 <cstdio> | |
| #include <cctype> | |
| #include <cstdlib> | |
| #include <conio.h> | |
| #include <ctime> | |
| #include <cstring> | |
| #include <windows.h> | |
| using namespace std; |
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 <stdlib.h> | |
| using namespace std; | |
| class BankAccount{ | |
| private: | |
| long int accountNumber; | |
| long int clientNumber; | |
| double currentBalance; | |
| float annualInterest = .10; |
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
| // Libraries | |
| #include <iostream> | |
| #include <cstdlib> | |
| #include <ctime> | |
| #include <windows.h> | |
| using namespace std; | |
| void position(int i, int j){ // Function to position the cursor (Only works in windows) | |
| COORD coord; |
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() { | |
| srand(time(NULL)); | |
| int complex[7][20][6]; | |
| int sum; | |
| double avgFloor, avgBuilding; | |
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
| /* Just a simple code, I just wanted to try the language | |
| */ | |
| #include <iostream> | |
| using namespace std; | |
| int main(){ | |
| int op; | |
| int num1; | |
| int num2; | |
| int result = 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> | |
| using namespace std; | |
| int main(){ | |
| int a; | |
| int b; | |
| int sum; | |
| cout << "Welcome to the CPP calc!"<<endl<<"Please, type the first number: "; | |
| cin >> a; | |
| cout <<a<< endl<<"Type the second number: "; |
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
| def decToBin(): | |
| Dec = int(input("Decimal number: ")) | |
| print(int(bin(Dec)[2:])) | |
| def binToDec(): | |
| binar = int(input("Binary number: ")) |
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
| #!/usr/bin/python | |
| """ | |
| This program is just a small program to shorten brute force sessions on hydra :) | |
| But to be more satisfying results of the brute force. You better interact directly with hydra, | |
| without having to use this black hydra console first :'). | |
| If you find any errors in running our program. Can chat via facebook :). | |
| Hydra is need for the process of this program :). | |
| """ | |
| import sys |
NewerOlder