Wednesday, December 28, 2011

banner

Tuesday, December 27, 2011

MY PROGRAM


#include<iostream.h>
#include<conio.h>
#include<process.h>
#include<stdio.h>

void getInp(char *inp )
 {
    char ch;

    int i=0;
      ch=getch();
    while(ch != '\r')
    {
     inp[i++] = ch;
     cout << "*";
     ch = getch();
    }
    inp[i] = '\0';
 }
void main()
{
clrscr();
float unamt,amt;
int hp,a,c1,c2;                                    //hp is for switch caes ;a is for password cases;c1 is for un1
char x, un[15];  //un is for username
do
{
clrscr();
textcolor(GREEN);
cprintf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b                                  HOME PAGE  ");
textcolor(BROWN+BLINK);
cprintf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t#--*--*--*--*--*--*--*--*--*--*--*--#\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t ");
textcolor(WHITE);
cout<<"\n Welcome to SHRISHAVAM BANK ";
cout<<"\n You are in the bank where quality is guaranted";
cout<<"\n To go to home page press 1 ";
cout<<"\n To login press 2";
cout<<"\n to go to contact us press 3";
cout<<"\n To exit press 4";
cout<<"\n enter your choice";
cin>>hp;
switch(hp)
  {
case(1):clrscr();
x='a';
break;
case(2):clrscr();
x='b';
cout<<"\nYou are in login page";
cout<<"\nEnter username ";
cin>>un;
if(un[0]=='a'&&un[1]=='s'&&un[2]=='i'&&un[3]=='m')
    {                                                 //begining of if case
unamt=10000;

char pw[15];

a=1;
    do{

cout<<"\n enter password you have  "<<5-a<<" tries :";
getInp(pw);


if (pw[0]=='a'&&pw[1]=='s'&&pw[2]=='i'&&pw[3]=='m'&&pw[4]=='1'&&pw[5]=='2')
  {
cout<<"\ncorrect password";

getch();
do{
clrscr();
cout<<"Welcome  "<<un;
cout<<"\n To check your profile press  1";
cout<<"\n To withdraw amount press 2";
cout<<"\n To deposit amount press 3";
cout<<"\n To go back press 4";
cout<<"\n To go to home page press 5 ";
cout<<"\n To exit press 6";
cout<<"\n\n ENTER YOUR CHOICE   : ";
cin>>c1;
switch(c1)
{
case(1):clrscr();
cout<<"\nName:Asim Krishna Prasad";
cout<<"\nAmount in bank : "<<unamt;
cout<<"\nTo go back press 1";
cout<<"\nto exit press any other key";

cout<<"\n Your choice   __  ";
cin>>c2;
if(c2==1)
  x='k';
else
exit(1);
break;
case(2):clrscr();
cout<<"\nEnter the amount u want to withdraw ";
cin>>amt;
unamt=unamt-amt;
cout<<"your new amount is"<<unamt;
break;
case(3):clrscr();
cout<<"\n Enter the amount to deposit :";
cin>>amt;
unamt=unamt+amt;
cout<<"your new amount is :"<<unamt;
break;
case(4):clrscr();
x='k';
break;
case(5):clrscr();
x='a';
break;
case(6):exit(1);
break;
default:clrscr();
cout<<"wrong choice";
cout<<"try again";
x='k';
getch();




}
}
while(x=='k');
     //a=1 is used to dissatisfy the while case

  a=1;
  }
else

  {
cout<<"\nincorrect";
a=a+1;     //a=a+1 is used to limit the while case
  }
}
   while((a<=4)&&(a>=2));
if(a==5)
{
cout<<"\n\n\n\t\tyour tries are over" ;
getch();
exit(1);
}
     }
    //end of if username1
else if(un[0]=='r'&&un[1]=='i'&&un[2]=='s'&&un[3]=='h'&&un[4]=='a'&&un[5]=='v')
     {
char pw[15];
unamt=21000;
a=1;
    do{

cout<<"\n enter password you have  "<<5-a<<" tries :";
getInp(pw);


if (pw[0]=='r'&&pw[1]=='i'&&pw[2]=='s'&&pw[3]=='h'&&pw[4]=='a'&&pw[5]=='v')
  {
cout<<"\ncorrect password";
getch();
do{
clrscr();
cout<<"Welcome  "<<un;
cout<<"\n To check your profile press  1";
cout<<"\n To withdraw amount press 2";
cout<<"\n To deposit amount press 3";
cout<<"\n To go back press 4";
cout<<"\n To go to home page press 5 ";
cout<<"\n To exit press 6";
cout<<"\n\n ENTER YOUR CHOICE   : ";
cin>>c1;
switch(c1)
{
case(1):clrscr();
cout<<"\nName:Rishav Kashyap";
cout<<"\nAmount in bank : "<<unamt;
cout<<"\nTo go back press 1";
cout<<"\nto exit press any other key";

cout<<"\n  Your choice  ";
cin>>c2;
if(c2==1)
  x='k';
else
exit(1);
break;
case(2):clrscr();
cout<<"\nEnter the amount u want to withdraw ";
cin>>amt;
unamt=unamt-amt;
cout<<"your new amount is"<<unamt;
break;
case(3):clrscr();
cout<<"\n Enter the amount to deposit :";
cin>>amt;
unamt=unamt+amt;
cout<<"your new amount is :"<<unamt;
break;
case(4):clrscr();
x='k';
break;
case(5):clrscr();
x='a';
break;
case(6):exit(1);
break;
default:clrscr();
cout<<"wrong choice";
cout<<"try again";
x='k';
getch();




}
}
while(x=='k');

a=1;                                                                       //a=1 is used to dissatisfy the while case
  }
else
  {
cout<<"\nincorrect";
a=a+1;     //a=a+1 is used to limit the while case
  }
}
   while((a<=4)&&(a>=2));
if(a==5)
{
cout<<"\n\n\n\t\tyour tries are over" ;
getch();
exit(1);
}

     }
else if (un[0]=='s'&&un[1]=='r'&&un[2]=='i'&&un[3]=='m'&&un[4]=='a'&&un[5]=='n')
{
char pw[15];
unamt=51000;
a=1;
    do{

cout<<"\n enter password you have  "<<5-a<<" tries :";
getInp(pw);


if (pw[0]=='c'&&pw[1]=='o'&&pw[2]=='o'&&pw[3]=='l'&&pw[4]=='1'&&pw[5]=='9'&&pw[6]=='2')
  {
cout<<"\ncorrect password";
getch();
do{
clrscr();
cout<<"Welcome  "<<un;
cout<<"\n To check your profile press  1";
cout<<"\n To withdraw amount press 2";
cout<<"\n To deposit amount press 3";
cout<<"\n To go back press 4";
cout<<"\n To go to home page press 5 ";
cout<<"\n To exit press 6";
cout<<"\n\n ENTER YOUR CHOICE   : ";
cin>>c1;
switch(c1)
{
case(1):clrscr();
cout<<"\nName:Sriman sawarthia";
cout<<"\nAmount in bank : "<<unamt;
cout<<"\nTo go back press 1";
cout<<"\nto exit press any other key";

cout<<"\n  your chice  ";
cin>>c2;
if(c2==1)
  x='k';
else
exit(1);
break;
case(2):clrscr();
cout<<"\nEnter the amount u want to withdraw ";
cin>>amt;
unamt=unamt-amt;
cout<<"your new amount is"<<unamt;
break;
case(3):clrscr();
cout<<"\n Enter the amount to deposit :";
cin>>amt;
unamt=unamt+amt;
cout<<"your new amount is :"<<unamt;
break;
case(4):clrscr();
x='k';
break;
case(5):clrscr();
x='a';
break;
case(6):exit(1);
break;
default:clrscr();
cout<<"wrong choice";
cout<<"try again";
x='k';
getch();




}
}
while(x=='k');


a=1;                                                                       //a=1 is used to dissatisfy the while case
  }
else
  {
cout<<"\nincorrect";
a=a+1;     //a=a+1 is used to limit the while case
  }
}
   while((a<=4)&&(a>=2));
if(a==5)
{
cout<<"\n\n\n\t\tyour tries are over" ;
getch();
exit(1);
}
}
break;
       case(3):
clrscr();
x='l';
textcolor(GREEN);
cprintf("\nCONTACT US");
textcolor(WHITE);
cout<<"\nPhone no: 9808412222";
cout<<"\nEmail ID: 123@fb.com";

break;
case(4):
exit(1);
break;
default:
clrscr();
cout<<"try again";
cout<<"\n ";
getch();
x='a';
break;
       }
}//do loop for home page
       while(x=='a');
getch();
exit(1);

}

Monday, December 26, 2011

click on it

http://www.dataentryjobs.us/62813.html
please click on it

Thursday, December 8, 2011

PLEASE VISIT

http://www.dataentryjobs.us/60008.html

Wednesday, December 7, 2011

ADDICTION



ADDICTION IS NOTHING BUT GETTING EXCESSIVE USED TO SOMETHING.

ADDICTION IS AT EVERY CONDITION IS BAD. THIS ADDICTION CAN BE  FOR BOOKS  ,TV, LAPTOP OR ANY OTHER GADGET OR SPORT.ADDICTION MAKE YOU GET USED TO A THING IN SUCH A WAY THAT WITHOUT IT YOU START TO GET HYPER,LOOSE YOUR PHYSICAL HEALTH AND START TO GET WEAK MENTALLY.

ADDICTION FOR GOOD THINGS CAN BE HELPFUL BUT WHEN IT IS FOR DRUGS ALCOHOL OR ANY OTHER HARMFUL PRODUCTS IT  MAKES THE HEALTH AND MENTAL STRENGTH GO WEEK OF ANY PERSON.UNTIL THESE HARMFUL PRODUCTS ARE REGULARLY GIVEN TO THEM THEY SEEM TO BE NORMAL BUT WHEN THE SUPPLY IS LACKED THE PERSON STARTS TO GET WILD AND START LOOSING MONEY POWER AND HEALTH .THEY START TO LOOSE THEIR FOCUS AND START LIVING A LIFE WHERE THEY QUARREL OR ARGUE FOR EVERY SMALL THING.IT CHANGES A PERSONALITY OF A PERSON DRASTICALLY.

 REHABS ARE MADE FOR THOSE WHO ARE ADDICTED TO  DRUGS AND ALL. REHAB CENTER CHANGES THE LIFESTYLE OF A PERSON AND MAKE HIM THE SAME PERSON AS THEY WERE BEFORE.

SUCH PERSONS ARE TREATED AS DISGRACE TO THE SOCIETY. THIS HAMPERS THE CHILDREN OF THE FAMILY OF SUCH PEOPLE .THIS LEADS TO POOR UPBRINGING OF A CHILD.

CONSUMPTION OF ANYTHING IS NOT A PROBLEM.BUT EXCESSIVE CONSUMPTION IS BAD .   

Wednesday, August 24, 2011

FRIENDSHP-The vital bond of life

Friends, that part of our life that give the memories of the lifetime. The memories that can never ever be relived again. Friendship is a bond that once broke can never be joined again with the same strength.There should not be any room for misunderstanding in friendship as it gives rise to the differences among friends.Friends should not be made on terms and conditions.
Its not that friendship cannot have small fights as-well, but these fights make friendship stronger.However, if you hide your feelings and don't give your opinion, it slowly builds a hatred for your friend in your mind. So never take your friend's small jokes in  your heart.
Friend is someone who you share your feelings with. They are the most important part of life which cannot be omitted from our life .A life without a friend is a life of a person living without air.Friendship gives live to life.It adds humor,confidence and attitude to ones life.
Everyone reading this blog will have a friend in his life so never loose him or her, as it will turn this heaven like world to a living hell.


Tuesday, August 2, 2011

Anger and intolerance are the enemies of correct understanding.


Anger, the disease that every human being tends to suffer at some age of his life. It is such a disease that increases the impact of other diseases. It has no symptoms but has a great impact on the body. It not only increases mental stress but it also decreases the physical condition. 



"Anger and intolerance are the enemies of correct understanding." rightly said by the great revolutionist of India Mohandas Karamchand Gandhi.He was one of the great follower of non-violence and was like anger never came to him.He was calm-minded that helped him to take correct decisions. Anger makes a person to loose his calmness and force him to take haste decisions which may not be correct.Anger makes a person to loose his patience and thus slowly gets intolerant.


Anger affects the person who is angry as well as all the people who are touched by that person's anger. An angry person is likely to speak harshly . In addition, anger affects a person's health. Doctors have discussed the relationship of anger to physiological complications such as  high blood pressure. An angry person may also cause both psychological and physical damage to himself or herself as well as his/her family. Sometimes angry people hurt themselves if they are unable or out of reach of the people at whom they want to direct their anger. At other times, angry people may physically hurt their children,  or other people. 


CONTROL YOUR ANGER RIGHT NOW BY FOLLOWING THESE TECHNIQUES:

 Breathe deep 

 Walk outside

 Do some stretches.

 
Get some paper and start writing.

 
Write about what you have to be grateful for
 

Pray.


Think about your values.