Sunday, 17 November 2013

Try It Tricked Tricked Go To: Tricked Page Here...
New Features in Windows 8.1: What makes it better? Microsoft is on its way to turn heads with the launch of the new Windows 8.1. In this update to the already existing Windows 8 operating system, a whole new range of features...

Sunday, 13 October 2013

Download Bluestacks Android App Player For Windows Bluestacks is a Silicon Valley-based software company that produces BlueStacks App Player and BlueStacks Cloud Connect. Both products are designed to enable Android applications to run on Windows...

Sunday, 1 September 2013

01. importjava.io.BufferedReader; 02. importjava.io.IOException; 03. importjava.io.InputStreamReader; 04. 05. /** 06. * @author 539189 07. * 08. */ 09. publicclassTribonacci { 10. 11. /** 12. * @param args 13. */ 14. publicstaticvoidmain(String[] args) { 15. // TODO Auto-generated method stub 16. BufferedReader bf =newBufferedReader(newInputStreamReader(System.in)); 17. try{ 18. System.out.print("Please Enter a number:"); 19. Integer n = Integer.parseInt(bf.readLine()); 20. 21. if(n <0){ 22. thrownewNegativeNumberException("Negative Numbers...
/*/* Java program to swap two numbers, This Swap Numbers *//* Java Example shows how to swap value of two numbers using java. */*/public class SwapElementsExample { public static void main(String[] args) { int num1 = 10; int num2 = 20; System.out.println("Before Swapping"); System.out.println("Value of num1 is :" + num1); System.out.println("Value of num2 is :" +num2); //swap the value swap(num1,...
#include <iostream> usingnamespacestd; constintSTACK_SIZE=100; classstack{ private: intcount;// number of items in the stack intdata[STACK_SIZE]; public: stack(); ~stack(); voidpush(constintitem);// push an item on the stack intpop(void);// pop item off the stack }; stack::stack()// constructor { count=0;// zero the stack } stack::~stack(){}// default destructor voidstack::push(constintitem) { if(count<STACK_SIZE) { data[count]=item; ++count; } elsecout<<"Overflow!\n"; } intstack::pop(void) { if(count>0) { --count; return(data[count]); } else { cout<<"Underflow!\n"; return0; } } voidtoBinary(intnums); voidtoOctal(intnums); voidtoHex(intnums); intmain() { intnums; cout<<"Please...