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
from random import shuffle | |
print "=============================================================================" | |
print "|| ||" | |
print "|| Welcome To Expert Travel System ||" | |
print "|| ||" | |
print "=============================================================================" | |
a = list(["Damai Beach", "Lundu Beach", "Desaru Beach", "Sapi Island"]) | |
b = list(["","","","","","","","","",""]) |
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 <iostream> | |
#include <stdlib.h> | |
#include <limits.h> | |
#include <fstream> | |
#include <string> | |
#include <sstream> | |
using namespace std; | |
ofstream outfile; |