Thursday, April 18, 2013

Data Structure Project


Screen Shots:




 









 


 Data Structure Project Demonstration of Stack, Ques, Single Link list and Double Link List. This project is build in DEV C++ using BGI Borland Graphics. Please read how to add graphics in dev C++ before compiling and executing the modified code.

DOWNLOAD PROJECT

Tuesday, April 9, 2013

Armstrong numbers in c++

If sum of cubes of each digit of the number is equal to the number itself, then the number is called an Armstrong number.

For example, 153 = ( 1 * 1 * 1 ) + ( 5 * 5 * 5 ) + ( 3 * 3 * 3 )
        
Write a program that prints all Armstrong numbers from 1-1000.


Solution:
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int rem,res,div;
for(int i = 1; i<=1000; i++)
{
rem = i%10;
div = i/10;
res = rem*rem*rem;
if(div>=1)
{
rem = div%10;
div = div/10;
res = res + rem*rem*rem;
if(div>=1)
{
rem = div%10;
div = div/10;
res = res + rem*rem*rem;
}
}
if(res == i)
cout<<res<<endl;
}
getch();
return 0;
}
view raw main.c hosted with ❤ by GitHub



OUTPUT:


Tuesday, April 2, 2013

Message Encryption/ Decryption Software in C#

SCREEN SOOTS:

MAIN SCREEN


Playfair Cipher Encryption/Decryption



Monoalphabetic Encryption/Decrption


Description:
   This project is developed in C# Visual Studio 2010. I have implemented Playfair and monoalphabetic Encrption/Decryption Algorithms.

DOWNLOAD:
https://docs.google.com/file/d/0B8-JebQ_QBSEdzRJcHZVOElPcnM/edit?usp=sharing

Monday, April 1, 2013

Solar System in C++ Computer Graphics

Solar System using Circle formula in computer Graphics.





Computer Graphics Assignment implementing solar system via coding circle formula.

ANGLE CALCULATING FORMULAS
x=(dist*cos(theta*PI) + sin(theta*PI))+350;
y=(dist*sin(theta*PI)+cos(theta*PI))+350;

Download Project Files Here:

https://docs.google.com/file/d/1QS9rNJ-n7IiFQ0cjrDgs4f-4xM3aOm5Iarbpz-tHj67XNo0tddm_xjUlCrzS/edit?usp=sharing