How Reverse a Number in C++ Program

By // No comments:
Thumbnail
A C++ program which reverse a number enter by a user and display it on the console window. Explanation :  We take a integer input from user . Use for loop and apply condition until number is zero. In for loop we apply math condition to reverse whole number. In math its called  modulus. When loop is end we receive reverse of input . ( if you input is 1234 you receive 4321 ) #include<iostream> using namespace std; int main() { int number, reverse = 0; cout<<"Please...

Tick Tac Toe Game Soruce Code

By // No comments:
Thumbnail
Tic Tac is a paper-and-pencil game for two players with X and 0 the player who  succeed in placing  3 marks in horizontally ,vertically or diagonally win the game . We convert this game In to C++. In this  game there are two players .Code is in very simple way read the full code below. Game is develop by students of  Comsats University #include <iostream> using namespace std; char square[10] = {'o','1','2','3','4','5','6','7','8','9'}; int checkwin(); void...

Finding Prime Number Program

By // No comments:
Thumbnail
A Prime Number belongs to set of  natural numbers which have two divisor 1 and itself . Example : 2 , 3 , 5  are primes . because 3 can only divide on 1 and itself. #include<iostream> #include<conio.h> using namespace std; int main() { int number; //Declare Integer Variable int count = 0; //For count the divisors cout << "Enter Number To Check "; cin >> number; for (int i = 1; i<=number; i++) { if (number%i == 0) { count++; } } ...

Finding Factorial In C++

By // No comments:
Thumbnail
Definition of factorial ? Factorial is non-integer number is the product of all number 1 to itself. denoted by n! . Example :  If u want to find the factorial of  number 6 then the factorial will be 1*2*3*4*5*6= 720 . Logic behind the factorial programming in C++ : First of all from definition we get how factorial can be calculated. Declare a variable named factorial and initialize it with 1 . Second we have to get the number from user. We have to multiply all numbers...

How to change console background and text color in c++

By // 1 comment:
Thumbnail
In c++ console window background is black and text color is white by default. You can change this color to make console window more attractive.  Syntax: system("color 71"); This  This statement has two parts in left side '7' is background color  code and on right side '1' is text color code. This statement can use in main function. You can use following color codes  : 0 = Black 1 = Blue 2 = Green 3 = Aqua 4 = Red 5 = Purple 6 = Yellow 7...

Digital Stop-Watch Program

By // No comments:
Thumbnail
Digital Stop watch in C++ is not very difficult using libraries and build in functions which make this program so easy to create and understand even new beginner programmers can also understand it .We create this program as easy as possible if you have any query comment below . you can also convert it to simple c . #include<conio.h> #include<process.h> #include<iostream> #include<dos.h> using namespace std; int h=0,m=0,s=0,ms=0; // Hours mins sec and...

Pacman Game In C++

By // 1 comment:
Thumbnail
pacman is one of the most famous game in all over the world . In this game there is a pac-man ( H) and Eater (E) .Eat the dots produced by the Eater to gain points . If your pac-man get collapse with eater game will over . You move your hero with arrow keys and keep running away from eater and eat the dots to increase points . You can select one of three difficulty  modes  to make game more interesting. This program is in object oriented approach focus...