Posts

Showing posts with the label Housie

Housie/Tambola using Python with Tickets in PDF file

Image
 #HOUSIE IN PYTHON!   #if you have'nt installed fpdf from cmd  then do open cmd>type #pip install fpdf >enter  from random import * from fpdf import FPDF def ImportantOne(x):      xxx=False      while xxx!=True:          tkt=[]          for i in range(3):              lis=[]              u=10              l=1              for j in range(9):                   no=randint(l,u)                   lis.append(no)                   u+=10                   l+=10               tkt.append(lis)      ...

100% Working C++ Tambola/Housie Code with 90 Unique Numbers

Image
#include<iostream> #include<iomanip> #include<time.h> #include<stdlib.h> #include<windows.h> using namespace std; int static tktno=1; void housiedesign() { cout<<"Welcome to Royale...\n"; cout<<setw(30)<<"               HH    HH    OOOOO     UU     UU   SSSSS   II  EEEEEEE \n"; cout<<setw(30)<<"               HH    HH   OO    OO   UU     UU  SS       II  EE      \n"; cout<<setw(30)<<"               HHHHHHHH  OO      OO  UU     UU   SSSSS   II  EEEEEEE \n"; cout<<setw(30)<<"               HH  ...