Projects

Online Banking System Project in JSP (Advance Java)

The Online Banking System Project is developed using technologies JSP (Advance Java) and JavaScript. I have used MySql for database. To run this project you need MyEclipse IDE and MySql. The project includes source code and database backup. Download project by the link given below. If you find any difficulty in downloading and using the project …

Online Banking System Project in JSP (Advance Java) Read More »

C++ Hotel Management Project

Here you will get C++ hotel management project. This system provides various options like booking a room, checking customer details, editing or deleting any customer, checking all allotted rooms. The project is developed using two important C++ concepts that are classes and file handling. C++ Hotel Management Project Output

C++ Program to Create Facebook Login Screen

Actually this program doesn’t creates a facebook login screen. I have just used graphics to create two boxes with an option to enter username and password. This is program is to just give you an idea that how you can create a login screen for your project. #include<conio.h> #include<iostream.h> #include<graphics.h> #include<stdio.h> #include<dos.h> #include<process.h> void logo() …

C++ Program to Create Facebook Login Screen Read More »

C++ Program to Print an Alphabet from A to L of *’s in Capital Letter

#include<iostream> using namespace std; int main() { int i,j,k=1; char ch; cout<<“Input an Alphabet in capital letters that you want to print:”; cin>>ch; cout<<“nnnn”; switch(ch) { case ‘A’: cout<<“ttt    “; for(i=1;i<=40;++i) { for(j=0;j<=22;++j) { if(i==1||i==2||i==21||i==20) cout<<“*”; else { if(j==0||j==20) cout<<“**”; else cout<<” “; } } cout<<“nttt    “; } break; case ‘B’: cout<<“tttt”; while(k<=2) { for(i=1;i<=9;++i) …

C++ Program to Print an Alphabet from A to L of *’s in Capital Letter Read More »