English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

All categories - 19 November 2006

Arts & Humanities · Beauty & Style · Business & Finance · Cars & Transportation · Computers & Internet · Consumer Electronics · Dining Out · Education & Reference · Entertainment & Music · Environment · Family & Relationships · Food & Drink · Games & Recreation · Health · Home & Garden · Local Businesses · News & Events · Pets · Politics & Government · Pregnancy & Parenting · Science & Mathematics · Social Science · Society & Culture · Sports · Travel

And by legally insane, I suppose it could mean either in the sense that you could be temporarily hospitalized against your will or that you would be able to enter an insanity plea in court.

Is there any jurisdiction within the United States where some rule like this applies?

I've heard this fact get repeated so many times, but I've always been kind of skeptical. Also, please reference where you got your info from if you answer. Thanks!

2006-11-19 22:42:56 · 7 answers · asked by foxwallow 3 in Law & Ethics

I already make a great pumpkin pie in fact, my family requests it every thanksgiving. This year I was diagnosed with type 2 diabetes and, I need to know how much sweetner it takes to replace for every cup of sugar that I would normally put in. can anyone help with this please? Also, can you tell me what else I could sweeten it with that would be okay for me to have.

2006-11-19 22:42:52 · 5 answers · asked by Geo 2 in Thanksgiving

# include
# include
# include
# include
# include
# include
# include
# include
# include
# include
# define p 240

char strin[20];
//following functions are used by the programmer to
//edit,append,delete data using progmammer function
//which can be accessed by pass function.
void pass(void);
void edit(void);
void append(void);
void recshow(void);
void dodelete(void);
void programmer(void);

//structure declaration to store names of
//trains and attractions.
struct arr{ char name[5][20]; };
struct tr { char names[2][20]; };
//declaration of class TOUR
class TOUR{
private:
char destination[20];
char state[20];
char season[20];
char cost[20];
tr trains;
tr timings;
arr attractions;
tr hotels;
char type[20];
char sp[160];
public:
void read_data(void);
void show_data(void);
int compare(char string[20])
{
if (strcmp(destination,string)==0)
return 1;
else
return 0;
}
void give_destination()
{
strcpy(strin,destination);}
}
//globally defined objects for class TOUR.
twork,worker;
//function used in the program to hold the screen
void wait(void)
{
cout<<"\nPRESS ANY KEY TO CONINUE \n";
getch();
}
//public function of class TOUR which reads data input by the programmer
void TOUR::read_data()
{
clrscr();
int blank,x,i,j,l;
cout<<"\n-----------------------------------ENTER DATA------------";
cout<<"---------------------- \n";
cout<<"DESTINATION "; gets(destination);
l=strlen(destination);
for (j=0;j<=l;j++)
destination[j]=toupper(destination[j]);
blank=20-strlen(destination);
for(x=1;x<=blank;x++)
strcat(destination," ");
destination[19]='\0';

cout<<"STATE "; gets(state);
l=strlen(state);
for(j=0;j<=l;j++)
state[j]=toupper(state[j]);
blank=20-strlen(state);
for (x=1;x<=blank;x++)
strcat(state," ");
state[19]='\0';

cout<<"SEASON "; gets(season);
l=strlen(season);
for(j=0;j<=l;j++)
season[j]=toupper(season[j]);
blank=20-strlen(season);
for(x=1;x<=blank;x++)
strcat(season," ");
season[19]='\0';

cout<<"COST "; gets(cost);
l=strlen(cost);
for(j=0;j<=l;j++)
cost[j]=toupper(cost[j]);
blank=20-strlen(cost);
for(x=1;x<=blank;x++)
strcat(cost," ");
cost[19]='\0';

cout<<"TRAINS ";
for (j=0;j<2;j++)
{
gets(trains.names[j]);
l=strlen(trains.names[j]);
for(i=0;i<=l;i++)
trains.names[j][i]=toupper(trains.names[j][i]);
blank=20-strlen(trains.names[j]);
for(x=1;x<=blank;x++)
strcat(trains.names[j]," ");
trains.names[j][19]='\0';
}

cout<<"TIMINGS ";
for (j=0;j<2;j++)
{
gets(timings.names[j]);
l=strlen(timings.names[j]);
for(i=0;i<=l;i++)
timings.names[j][i]=toupper(timings.names[j][i]);
blank=20-strlen(timings.names[j]);
for(x=1;x<=blank;x++)
strcat(timings.names[j]," ");
timings.names[j][19]='\0';
}

cout<<"ATRRACTIONS ";
for(i=0;i<5;i++)
{
gets(attractions.name[i]);
l=strlen(attractions.name[i]);
for(j=0;j<=l;j++)
attractions.name[i][j]=toupper(attractions.name[i][j]);
blank=20-strlen(attractions.name[i]);
for(x=1;x<=blank;x++)
strcat(attractions.name[i]," ");
attractions.name[i][19]='\0';
}

cout<<"HOTELS ";
for (j=0;j<2;j++)
{
gets(hotels.names[j]);
l=strlen(hotels.names[j]);
for(i=0;i<=l;i++)
hotels.names[j][i]=toupper(hotels.names[j][i]);
blank=20-strlen(hotels.names[j]);
for(x=1;x<=blank;x++)
strcat(hotels.names[j]," ");
hotels.names[j][19]='\0';
}

cout<<"TYPE "; gets(type);
l=strlen(type);
for(j=0;j<=l;j++)
type[j]=toupper(type[j]);
blank=20-strlen(type);
for(x=1;x<=blank;x++)
strcat(type," ");
type[19]='\0';

cout<<"SPECIALITY "; gets(sp);
l=strlen(sp);
for(j=0;j<=l;j++)
sp[j]=toupper(sp[j]);
blank=20-strlen(sp);
for(x=1;x<=blank;x++)
strcat(sp," ");
sp[159]='\0';
}
//public function of class TOUR which displays data on the screen
void TOUR::show_data()
{
clrscr();
cout<<"\n*************************VARIOUS TOURIST PLACES ARE AS***";
cout<<"************************\n";
cout< cout< "< "< cout< "< "< cout< "< "
< cout< < cout< "< "
< cout< < cout< "
< cout< cout< cout< cout< cout<<"\n********************************************************";
cout<<"***********************\n";
wait();
}

void recshow()
{
clrscr();
fstream tfile("tourism.dat",ios::binary|ios::out|ios::in);
cout<<"CONTENTS OF FILE ARE AS\n";
tfile.seekg(0,ios::beg);
tfile.read((char*)&worker,sizeof(TOUR));
while (!tfile.eof())
{
worker.show_data();
tfile.read((char*)&worker,sizeof(TOUR));
}
tfile.close();
cout<<" DESIRED RECORD(S) ARE DISLPLAYED \n";
}

void append()
{
clrscr();
char ch;
int recno;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::end);
recno=tfile.tellg()/sizeof(TOUR);
cout<<"\n NO OF RECORDS IN FILE ARE AS "< do
{ cout<<"\n WANT TO ENTER MORE DATA Y/N \n";
ch=toupper(getche());
if (ch=='Y')
{
cout<<"\n RECORD NUMBER "< twork.read_data();
twork.give_destination();
cout<<"\n YOUR DESTINATION WAS "< tfile.seekg(0,ios::beg);
int found=0;
while (!tfile.eof()&&!found)
{
tfile.read((char*)&worker,sizeof(TOUR));
if (worker.compare(strin))
found=1;
}
if (!found)
{
tfile.clear();
recno++;
tfile.seekp(0,ios::end);
tfile.write((char*)&twork,sizeof (TOUR));
cout<<" \nNEW RECORD IS ENTERED SUCCESFULLY\n";
}
else
{
cout<<" !!! THIS DESTINATION ALREADY EXISTS !!!\n";
wait();
recshow();
}
}
}
while(ch=='Y');
tfile.close();
}

void edit()
{
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
cout<<"ENTER DESTINATION FOR WHICH YOU WANT TO EDIT RECORD \n";
gets(strin);
int l=strlen(strin);
for (int j=0;j<=l;j++)
strin[j]=toupper(strin[j]);
int blank=20-strlen(strin);
for(int x=1;x strcat(strin," ");
strin[19]='\0';
int found=0;
while (!tfile.eof() && !found)
{
tfile.read((char*)&worker,sizeof(TOUR));
if (worker.compare(strin))
found=1;
}
if(!found)
cout<<"\n NO RECORD FOUND FOUND IN THIS DESTINATION\n";
else
{
worker.show_data();
worker.read_data();
tfile.seekp(tfile.tellp()-sizeof(worker));
tfile.write((char*)&worker,sizeof(TOUR));
cout<<" EDITED RECORD IS SAVED SUCCESSFULLY \n";
}
wait();
tfile.close();
}

void dodelete()
{
fstream tfile ("tourism.dat",ios::binary|ios::out|ios::in);
int found=0;
char ok;
cout<<"\n ENTER DESTINATION TO DELETE THE RECORD\n";
gets(strin);
int l=strlen(strin);
for (int j=0;j<=l;j++)
strin[j]=toupper(strin[j]);
int blank=20-strlen(strin);
for(int x=1;x strcat(strin," ");
strin[19]='\0';
while (!tfile.eof()&&!found)
{
tfile.read((char*)&worker,sizeof(worker));
if(worker.compare(strin))
found=1;
}
if(!found)
{
cout<<"\n NO SUCH RECORD FOUND\n";
wait();
}
else
{
recshow();
cout<<"\nWANT TO DELETE THIS RECORD Y/N \n";
ok=toupper(getche());
if(ok=='Y')
{
fstream mtemp("temp.dat",ios::binary|ios::in|ios::out);
tfile.seekg(ios::beg);
tfile.read((char*)&worker,sizeof(worker));
tfile.clear();
while(!tfile.eof())
{
if(!worker.compare(strin))
mtemp.write((char*)&worker,sizeof(worker));
tfile.read((char*)&worker,sizeof(worker));
}
tfile.close();
mtemp.close();
remove("tourism.dat");
if (rename("temp.dat","tourism.dat")==0)
cout<<"\nêêê RECORD IS DELETED SUCCESSFULLY êêê\n";
else
cout<<"\n!!!OPERATION IS UNSUCCESSFUL!!!\n";
wait();
}
}
}

void pass()
{
clrscr();
clearviewport();
int c=0,y=0;
char pass_word[20];
const char password[]={"210785"};
while(c<2)
{
c++;
setbkcolor(BLUE);
for (y=1;y<14;y++)
cout << endl;
cout << "\t\têêê ENTER YOUR PASSWORD êêê\n";
gotoxy(50,14);
gets(pass_word);
if(strcmp(password,pass_word)==0)
{
programmer();
break;
}
else
cout<<"ëëë BAD LUCK PASSWORD IS WRONG ëëë";
if (c<2)
//textattr(RED+BLINK);
//cprintf("\n²²² TRY ONCE MORE ²²²\r\n");
cprintf("\n²²² TRY ONCE MORE ²²²\r\n");
}
wait();
}

void programmer(void)
{
//setbkcolor(BLUE);
// textbackground(BLUE);
int ok,y;
do {
clrscr();
clearviewport();
setbkcolor(BLUE);

for(y=1;y<=3;y++)
cout<<"\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\t ";
cout<<"ENTER CHOICE & PRESS ENTER\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\t\tAPPEND RECORD ---> 1 \t\t\t\t";
cout<<"\t\t\t\tEDIT RECORD ---> 2 \t\t\t\t";
cout<<"\t\t\t\tDELETE RECORD ---> 3 \t\t\t\t";
cout<<"\t\t\t\tSHOW RECORD ---> 4 \t\t\t\t";
cout<<"\t\t\t\tEXIT ---> 5 \t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for(y=0;y<20;y++)
cout<<"\t\t\t\t\t ";
cout << "\t\t\t\t Enter choice : ";
cin>>ok;

switch(ok)
{
case 1:append();
break;
case 2: edit();
break;
case 3: dodelete();
break;
case 4: recshow();
break;
case 5:break;
default:cout<<" INVALID CHOICE \n";delay(1500);break;
}
} while(ok!=5);
}
//class which acssess the data
class TRAVEL { private:
char dest[20];
char st[20];
char seas[20];
char ct[20];
tr tra;
tr timing;
arr attract;
tr hotel;
char ty[20];
char special[160];
public:
void get_state(char tt[20]);
void get_attract(char tt[20]);
void get_read();
void get_alpha(char tt[20]);
void get_all(char tt[20]);
void get_dest(char tt[20]);
void get_season(char tt[20]);
void get_cost(char tt[20]);
void dest_seas();
void seas_state();
void state_cost();
void all();
} abc,pqr;
//member function of class TRAVEL which acssess the data.
void TRAVEL::get_read()
{
clrscr();
cout<<"\n*************************VARIOU TOURIST PLACES ARE AS***";
cout<<"************************\n";
cout< cout< "< "< cout< "< "< cout< "< "
<
cout< < cout< "< "
< cout< < cout< cout< cout< cout< cout< cout<<"\n********************************************************";
cout<<"************************\n";
wait();
}
//member function of class TRAVEL which compares destination and season
//input by the user and displays data corresponding to the same.
void TRAVEL::dest_seas()
{
char ch,destination[20],season[20];
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"ENTER DESTINATION & SEASON FOR WHICH INFORMATION IS TO BE";
cout<<" DISPLAYED\n";
cout<<"DESTINATION "; gets(destination);
cout<<"SEASON ";gets(season);
int l=strlen(destination);
for (int j=0;j<=l;j++)
destination[j]=toupper(destination[j]);
int blank=20-strlen(destination);
for(int x=1;x strcat(destination," ");
destination[19]='\0';
l=strlen(season);
for (j=0;j<=l;j++)
season[j]=toupper(season[j]);
blank=20-strlen(season);
for(x=1;x strcat(season," ");
season[19]='\0';
cout<<"WANT TO FIND RECORD FOR "< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
if ((strcmp(dest,destination)==0)&&(strcmp(seas,season)==0))
{
i++;
abc.get_read();
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if ((i==0)&&(ch=='Y'))
cout<<"\n NO RECORD FOUND FOR "< else
cout<<"\n HAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which compares the state and cost
//input by the user and displays the data corresonding to the same.
void TRAVEL::state_cost()
{
char ch,state[20],cost[20];
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"ENTER STATE & COST RANGE FOR WHICH ";
cout<<"INFORMATION IS TO BE DISPLAYED\n";
cout<<"STATE "; gets(state);
cout<<"COST RANGE ";gets(cost);
int l=strlen(state);
for (int j=0;j<=l;j++)
state[j]=toupper(state[j]);
int blank=20-strlen(state);
for(int x=1;x strcat(state," ");
state[19]='\0';
blank=20-strlen(cost);
for(x=1;x strcat(cost," ");
cost[19]='\0';
cout<<"WANT TO FIND RECORD FOR "< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
if ((strcmp(st,state)==0)&&(strcmp(ct,cost)==0))
{
i++;
abc.get_read();
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if ((i==0)&&(ch=='Y'))
cout<<"\n NO RECORD FOUND FOR "< else
cout<<"\nHAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which compares the season and state
//input by the user and displays data corresponding to the same.
void TRAVEL::seas_state()
{
char ch,state[20],season[20];
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"ENTER STATE & SEASON FOR WHICH INFORMATION IS TO BE DISPLAYED\n";
cout<<"STATE "; gets(state);
cout<<"SEASON ";gets(season);
int l=strlen(state);
for (int j=0;j<=l;j++)
state[j]=toupper(state[j]);
int blank=20-strlen(state);
for(int x=1;x strcat(state," ");
state[19]='\0';
l=strlen(season);
for (j=0;j<=l;j++)
season[j]=toupper(season[j]);
blank=20-strlen(season);
for(x=1;x strcat(season," ");
season[19]='\0';
cout<<"WANT TO FIND RECORD FOR "< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
if ((strcmp(st,state)==0)&&(strcmp(seas,season)==0))
{
i++;
abc.get_read();
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if ((i==0)&&(ch=='Y'))
cout<<"\n NO RECORD FOUND FOR "< else
cout<<"\nHAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which displays the entire data of the file.
void TRAVEL::all()
{
char ch;
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"WANT TO SEE ALL RECORD Y/N"< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while(!(tfile.eof())&&(ch=='Y'))
{
i++;
abc.get_read();
cout<<"WANT TO SEE MORE RECORDS Y/N \n";
ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if ((i==0)&&(ch=='Y'))
cout<<"\n NO RECORD FOUND";
else
cout<<"\nHAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which compares state input by the user and
//displays data corresponding to same.
void TRAVEL::get_state(char tt[20])
{
char ch,state[20];
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"ENTER STATE FOR WHICH INFORMATION IS TO BE DISPLAYED\n";
gets(state);
int l= strlen(state);
for (int j=0;j<=l;j++)
state[j]=toupper(state[j]);
int blank=20-strlen(state);
for(int x=1;x strcat(state," ");
state[19]='\0';
cout<<"WANT TO FIND RECORD FOR "< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
if ((strcmp(st,state)==0)&&(strcmp(ty,tt)==0))
{
i++;
abc.get_read();
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if ((i==0)&&(ch=='Y'))
cout<<"\n NO RECORD FOUND FOR "< else
cout<<"\n HAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which compares attractions
//input by the user and displays data corresponding to same.
void TRAVEL::get_attract(char tt[20])
{
char ch,attraction[20],att[20];
int i=0,j=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"ENTER ATTRACTION/NAME OF TEMPLE OR MOSQUE/NAME OF GOD/FESTIVALS";
cout<<"/FORTS AND PALACES FOR WHICH INFORMATION IS TO BE DISPLAYED\n";
gets(attraction);
int l=strlen(attraction);
for (j=0;j<=l;j++)
attraction[j]=toupper(attraction[j]);
int blank=20-strlen(attraction);
for(int x=1;x<=blank;x++)
strcat(attraction," ");
attraction[19]='\0';
cout<<"WANT TO FIND RECORD FOR "< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
for (j=0;j<5;j++)
{
strcpy(att,attract.name[j]);
if ((strcmp(att,attraction)==0)&&(strcmp(ty,tt)==0))
{
abc.get_read();
i++;
}
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if (i==0)
cout<<"\n NO RECORD FOUND FOR "< else
cout<<"\n HAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which compares type
//chosen by the user and displays all data for the same.
void TRAVEL::get_all(char tt[20])
{
char ch;
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"WANT ALL DESTINATIONS TO BE DISPLAYED Y/N \n"< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
if (strcmp(ty,tt)==0)
{
i++;
abc.get_read();
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if (i==0)
cout<<"\n NO RECORD FOUND FOR "< else
cout<<"\n HAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which compares cost range input by the
//user and displays data corresponding to the same.
void TRAVEL::get_cost(char tt[20])
{
char ch,cost[20];
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"ENTER COST RANGE FOR WHICH INFORMATION IS TO BE DISPLAYED\n";
gets(cost);
int l=strlen(cost);
for (i=0;i<=l;i++)
strcat(cost," ");
cost[19]='\0';
cout<<"WANT TO FIND RECORD FOR "< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
if ((strcmp(ct,cost)==0)&&(strcmp(ty,tt)==0))
{
abc.get_read();
i++;
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if ((i==0)&&(ch=='Y'))
cout<<"\n NO RECORD FOUND FOR "< else
cout<<"\n HAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which compares season input by the user
//and displays data corresponding to the same.
void TRAVEL::get_season(char tt[20])
{
char ch,season[20];
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"ENTER SEASON SUCH AS OCTOBER TO NOVEMBER FOR WHICH INFORMATION";
cout<<"IS TO BE DISPLAYED \n";
gets(season);
int l=strlen(season);
for(int j=0;j<=l;j++)
season[j]=toupper(season[j]);
int blank=20-strlen(season);
for(int x=1;x strcat(season," ");
season[19]='\0';
cout<<"WANT TO FIND RECORD FOR "< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
if ((strcmp(seas,season)==0)&&(strcmp(ty,tt)==0))
{
i++;
abc.get_read();
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if (i==0)
cout<<"\n NO RECORD FOUND FOR "< else
cout<<"\n HAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which compares destination input by the
//user and displays data corresponding to that.
void TRAVEL::get_dest(char tt[20])
{
char ch,destination[20];
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"ENTER DESTINATION FOR WHICH INFORMATION IS TO BE DISPLAYED \n";
gets(destination);
int l=strlen(destination);
for(int j=0;j<=l;j++)
destination[j]=toupper(destination[j]);
int blank=20-strlen(destination);
for (int x=1;x strcat(destination," ");
destination[19]='\0';
cout<<"WANT TO FIND RECORD FOR "< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
if ((strcmp(dest,destination)==0)&&(strcmp(ty,tt)==0))
{
i++;
abc.get_read();
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if (i==0)
cout<<"\n !!!NO RECORD FOUND FOR "< else
cout<<"\n HAVE A GOOD DAY \n";
wait();
}
//member function of class TRAVEL which compares alphabet input by the user
//and displays data starting from same.
void TRAVEL::get_alpha(char tt[20])
{
char ch,alpha;
int i=0;
fstream tfile("tourism.dat",ios::binary|ios::in|ios::out);
tfile.seekg(0,ios::beg);
cout<<"ENTER ALPHABET FOR WHICH INFORMATION IS TO BE DISPLAYED \n";
alpha=toupper(getche());
cout<<"\n WANT TO FIND RECORD STARTING FROM "< ch=toupper(getch());
tfile.read((char*)&abc,sizeof(TRAVEL));
while (!(tfile.eof())&&(ch=='Y'))
{
if((alpha==dest[0])&&(strcmp(ty,tt)==0))
{
i++;
abc.get_read();
}
tfile.read((char*)&abc,sizeof(TRAVEL));
}
tfile.close();
if (i==0)
cout<<"\n NO RECORD FOUND FOR "< else
cout<<"\n HAVE A GOOD DAY \n";
wait();
}
//FUNCTION TO BE CALLED WHEN USER WANTS TO SEE HILL STATIONS.
void hill()
{
int ok,blank,y;
char type[20]={"HILL STATION" };
blank=20-strlen(type);
for(int i=1;i<=blank;i++)
strcat(type," ");
type[19]='\0';
do
{
clrscr();
clearviewport();
setbkcolor(BLUE);
for (y=1;y<5;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;
cout<<"\t\t\tENTER CHOICE & PRESS ENTER \t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\tNAME OF DESTINATION----> 1 \t\t\t\t";
cout<<"\t\t\tSTATE WISE DISPLAY-----> 2 \t\t\t\t";
cout<<"\t\t\tA PARTICULAR ALPHABET--> 3 \t\t\t\t";
cout<<"\t\t\tCOST RANGE-------------> 4 \t\t\t\t";
cout<<"\t\t\tSEASON-----------------> 5 \t\t\t\t";
cout<<"\t\t\tALL HILL STATIONS------> 6 \t\t\t\t";
cout<<"\t\t\tPARTICULAR ATTRACTION--> 7 \t\t\t\t";
cout<<"\t\t\tEXIT-------------------> 8 \t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for (y=1;y<12;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;
cout << "\t\t\tEnter choice : ";
cin>>ok;
switch(ok)
{
case 1: abc.get_dest(type);
break;
case 2: abc.get_state(type);
break;
case 3: abc.get_alpha(type);
break;
case 4: abc.get_cost(type);
break;
case 5: abc.get_season(type);
break;
case 6: abc.get_all(type);
break;
case 7: abc.get_attract(type);
break;
case 8: break;
default:cout<<"invalid choice \n";delay(1500);break;
}
}
while(ok!=8);
}
// FUNCTION TO BE CALLED WHEN USER CHOOSES TO SEE SOUTHERN DESTINATIONS.
void south()
{
int ok,y;
char type[20]={"SOUTH"};
int blank=20-strlen(type);
for (int l=1;l<=blank;l++)
strcat(type," ");
type[19]='\0';
do
{
clrscr();
clearviewport();
setbkcolor(BLUE);
for(y=1;y<5;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;
cout<<"\t ENTER CHOICE & PRESS ENTER\t\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t NAME OF DESTINATION-----------> 1\t\t\t\t";
cout<<"\t STATE WISE DISPLAY------------> 2\t\t\t\t";
cout<<"\t A PARTICULAR ALPHABET---------> 3\t\t\t\t";
cout<<"\t COST RANGE--------------------> 4\t\t\t\t";
cout<<"\t SEASON------------------------> 5\t\t\t\t";
cout<<"\t ALL SOUTHERN DESTINATIONS-----> 6\t\t\t\t";
cout<<"\t FESTIVALS OF SOUTH------------> 7\t\t\t\t";
cout<<"\t EXIT--------------------------> 8\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for(y=1;y<12;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t Enter choice : ";
cin>>ok;
switch(ok)
{
case 1: abc.get_dest(type);
break;
case 2:abc.get_state(type);
break;
case 3:abc.get_alpha(type);
break;
case 4:abc.get_cost(type);
break;
case 5:abc.get_season(type);
break;
case 6:abc.get_all(type);
break;
case 7:abc.get_attract(type);
break;
case 8: break;
default:cout<<" INVALID CHOICE \n";delay(1500);break;
}
}
while(ok!=8);
}
//FUNCTION TO BE CALLED WHEN USER CHOOSES TO SEE RELIGIOUS PLACES.
void religion()
{
int ok,y;
char type[20]={"RELIGIOUS"};
int blank=20-strlen(type);
for (int l=1;l<=blank;l++)
strcat(type," ");
type[19]='\0';
do
{
clrscr();
clearviewport();
setbkcolor(BLUE);
for(y=1;y<5;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;
cout<<"\t\t\tENTER CHOICE AND PRESS ENTER\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\tNAME OF DESTINATION----> 1\t\t\t\t";
cout<<"\t\t\tSTATE WISE DISPLAY-----> 2\t\t\t\t";
cout<<"\t\t\tA PARTICULAR ALPHABET--> 3\t\t\t\t";
cout<<"\t\t\tCOST RANGE-------------> 4\t\t\t\t";
cout<<"\t\t\tSEASON-----------------> 5\t\t\t\t";
cout<<"\t\t\tALL RELIGIOUS PLACES---> 6\t\t\t\t";
cout<<"\t\t\tNAME OF GOD------------> 7\t\t\t\t";
cout<<"\t\t\tNAME OF TEMPLE/MOSQUE--> 8\t\t\t\t";
cout<<"\t\t\tEXIT-------------------> 9\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for(y=1;y<12;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tEnter choice : ";
cin>>ok;
switch(ok)
{
case 1:abc.get_dest(type);
break;
case 2:abc.get_state(type);
break;
case 3:abc.get_alpha(type);
break;
case 4:abc.get_cost(type);
break;
case 5:abc.get_season(type);
break;
case 6:abc.get_all(type);
break;
case 7:abc.get_attract(type);
break;
case 8:abc.get_attract(type);
break;
case 9: break;
default:cout<<"invalid choice \n";delay(1500);break;
}
}
while(ok!=9);
}
//FUNCTION TO BE CALLED WHEN USER WANTS TO SEE SEA BEACHES.
void seas()
{
int ok,y;
char type[20]={"BEACH"};
int blank=20-strlen(type);
for (int l=1;l<=blank;l++)
strcat(type," ");
type[19]='\0';
do
{
clrscr();
clearviewport();
setbkcolor(BLUE);
for(y=1;y<5;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;
cout<<"\t\t\tENTER CHOICE & PRESS ENTER\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\tNAME OF DESTINATION----> 1\t\t\t\t";
cout<<"\t\t\tSTATE WISE DISPLAY-----> 2\t\t\t\t";
cout<<"\t\t\tA PARTICULAR ALPHABET--> 3\t\t\t\t";
cout<<"\t\t\tCOST RANGE-------------> 4\t\t\t\t";
cout<<"\t\t\tSEASON-----------------> 5\t\t\t\t";
cout<<"\t\t\tALL BEACHES------------> 6\t\t\t\t";
cout<<"\t\t\tPARTICULAR ATTRACTION--> 7\t\t\t\t";
cout<<"\t\t\tEXIT-------------------> 8\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for(y=1;y<11;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout <<"\t\t\tEnter choice : ";
cin>>ok;
switch(ok)
{
case 1:abc.get_dest(type);
break;
case 2:abc.get_state(type);
break;
case 3:abc.get_alpha(type);
break;
case 4:abc.get_cost(type);
break;
case 5:abc.get_season(type);
break;
case 6:abc.get_all(type);
break;
case 7:abc.get_attract(type);
break;
case 8: break;
default:cout<<"invalid choice \n"; delay(1500); break;
}
}
while(ok!=8);
}
//FUNCTION TO BE CALLED WHEN USER WANTS TO SEE WILD LIFE SANCTURIES.
void sancturies()
{
int ok,y;
char type[20]={"SANCTURIES"};
int blank=20-strlen(type);
for (int l=1;l<=blank;l++)
strcat(type," ");
type[19]='\0';
do
{
clrscr();
clearviewport();
setbkcolor(BLUE);
for(y=1;y<5;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;
cout<<"\t\t\tENTER CHOICE & PRESS ENTER\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\tNAME OF DESTINATION---------> 1\t\t\t\t";
cout<<"\t\t\tSTATE WISE DISPLAY----------> 2\t\t\t\t";
cout<<"\t\t\tA PARTICULAR ALPHABET-------> 3\t\t\t\t";
cout<<"\t\t\tCOST RANGE------------------> 4\t\t\t\t";
cout<<"\t\t\tSEASON----------------------> 5\t\t\t\t";
cout<<"\t\t\tALL WILD LIFE SANCTURIES----> 6\t\t\t\t";
cout<<"\t\t\tPARTICULAR ATTRACTION-------> 7\t\t\t\t";
cout<<"\t\t\tEXIT------------------------> 8\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for(y=1;y<11;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tEnter choice : ";
cin>>ok;
switch(ok)
{
case 1:abc.get_dest(type);
break;
case 2:abc.get_state(type);
break;
case 3:abc.get_alpha(type);
break;
case 4:abc.get_cost(type);
break;
case 5:abc.get_season(type);
break;
case 6:abc.get_all(type);
break;
case 7:abc.get_attract(type);
break;
case 8: break;
default:cout<<"invalid choice \n";delay(1500);break;
}
}
while(ok!=8);
}
//FUNCTION TO BE CALLED WHEN USER WANTS TO SEE LIST OF SHOPPING CENTRES.
void shopping()
{
int ok,y;
char type[20]={"SHOPPING"};
int blank=20-strlen(type);
for (int l=1;l<=blank;l++)
strcat(type," ");
type[19]='\0';
do
{
clrscr();
clearviewport();
setbkcolor(BLUE);
for(y=1;y<8;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tENTER CHOICE & PRESS ENTER\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\tNAME OF DESTINATION---------> 1\t\t\t\t";
cout<<"\t\t\tALL SHOPPING CENTRES--------> 2\t\t\t\t";
cout<<"\t\t\tPARTICULAR ATTRACTION-------> 3\t\t\t\t";
cout<<"\t\t\tEXIT------------------------> 4\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------\n";
for(y=1;y<11;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tEnter choice : ";
cin>>ok;
switch(ok)
{
case 1:abc.get_dest(type);
break;
case 2:abc.get_all(type);
break;
case 3:abc.get_attract(type);
break;
case 4:
break;
default:cout<<"invalid choice \n";delay(1500);break;
}
}
while(ok!=4);
}
//FUNCTION TO BE CALLED WHEN USER WANTS TO SEE HISTORICAL PLACES.
void historical()
{
int ok,y;
char type[20]={"HISTORICAL"};
int blank=20-strlen(type);
for (int l=1;l<=blank;l++)
strcat(type," ");
type[19]='\0';
do
{
clrscr();
clearviewport();
setbkcolor(BLUE);
for(y=1;y<5;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tENTER CHOICE & PRESS ENTER\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\tNAME OF DESTINATION---------> 1\t\t\t\t";
cout<<"\t\t\tSTATE WISE DISPLAY----------> 2\t\t\t\t";
cout<<"\t\t\tA PARTICULAR ALPHABET-------> 3\t\t\t\t";
cout<<"\t\t\tCOST RANGE------------------> 4\t\t\t\t";
cout<<"\t\t\tALL HISTORICAL PLACES-------> 5\t\t\t\t";
cout<<"\t\t\tFORTS AND PALACES-----------> 6\t\t\t\t";
cout<<"\t\t\tEXIT------------------------> 7\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for(y=1;y<12;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tEnter choice : ";
cin>>ok;
switch(ok)
{
case 1:abc.get_dest(type);
break;
case 2:abc.get_state(type);
break;
case 3:abc.get_alpha(type);
break;
case 4:abc.get_cost(type);
break;
case 5:abc.get_all(type);
break;
case 6:abc.get_attract(type);
break;
case 7:
break;
default:cout<<"invalid choice \n";delay(1500);break;
}
}
while(ok!=7);
}
//FUNCTION TO BE CALLED WHEN USER WANTS TO SEE EASTERN PLACES.
void east()
{
int ok,y;
char type[20]={"EAST"};
int blank=20-strlen(type);
for (int l=1;l<=blank;l++)
strcat(type," ");
type[19]='\0';
do
{
clrscr();
clearviewport();
setbkcolor(BLUE);
for(y=1;y<5;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tENTER CHOICE & PRESS ENTER\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\tNAME OF DESTINATION---------> 1\t\t\t\t";
cout<<"\t\t\tSTATE WISE DISPLAY----------> 2\t\t\t\t";
cout<<"\t\t\tA PARTICULAR ALPHABET-------> 3\t\t\t\t";
cout<<"\t\t\tCOST RANGE------------------> 4\t\t\t\t";
cout<<"\t\t\tSEASON----------------------> 5\t\t\t\t";
cout<<"\t\t\tALL EASTERN DESTINATIONS----> 6\t\t\t\t";
cout<<"\t\t\tPARTICULAR ATTRACTION-------> 7\t\t\t\t";
cout<<"\t\t\tEXIT------------------------> 8\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for(y=1;y<12;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tEnter choice : ";
cin>>ok;
switch(ok)
{
case 1:abc.get_dest(type);
break;
case 2:abc.get_state(type);
break;
case 3:abc.get_alpha(type);
break;
case 4:abc.get_cost(type);
break;
case 5:abc.get_season(type);
break;
case 6:abc.get_all(type);
break;
case 7:abc.get_attract(type);
break;
case 8: break;
default:cout<<"invalid choice \n";delay(1500);break;
}
}
while(ok!=8);
}
//FUNCTION TO BE CALLED WHEN USER WANTS EXTRA INFORMATION FOR ALL TYPE OF
//PLACES .
void extra(void)
{
int ok,y;
do
{
clrscr();
clearviewport();
setbkcolor(BLUE);
for(y=1;y<5;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tENTER CHOICE & PRESS ENTER\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\tDESTINATION & SEASON------> 1\t\t\t\t";
cout<<"\t\t\tSTATE & SEASON ------> 2\t\t\t\t";
cout<<"\t\t\tSTATE & COST ------> 3\t\t\t\t";
cout<<"\t\t\tALL ------> 4\t\t\t\t";
cout<<"\t\t\tEXIT ------> 5\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for(y=1;y<14;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\tEnter choice : ";
cin>>ok;
switch(ok)
{
case 1:abc.dest_seas();
break;
case 2:abc.seas_state();
break;
case 3:abc.state_cost();
break;
case 4:abc.all();
break;
case 5: break;
default:cout<<"Invalid Choice \n";delay(1500);break;
}
}
while(ok!=5);
}

// FUNCTION FOR THE FIRST SCREEN.
void starter()
{
clearviewport();
char s;

while(!kbhit())
{

for(int i=0;i<3;i++)
{
circle(20,20,40+5*i);
circle(618,20,40+5*i);
circle(20,458,40+5*i);
circle(618,458,40+5*i);
circle(320,20,40+5*i);
circle(320,458,40+5*i);
circle(20,240,40+5*i);
circle(618,240,40+5*i);
delay(100);
}
for(i=1;i<5;i++)
{
line(5*i-5,0,5*i-5,479);
line(0,5*i-5,639,5*i-5);
line(639-5*(i-1),0,639-5*(i-1),479);
line(0,484-5*i,639,484-5*i);
delay(100);
}

settextjustify(CENTER_TEXT,CENTER_TEXT);
for(i=2;i<=9;i++)
{
settextstyle(TRIPLEX_FONT,HORIZ_DIR,5);
setcolor(i+6);
outtextxy(320,65+10*i,"TOURS & TRAVELS ");
delay(100);

setcolor(BLACK);
outtextxy(320,65+10*i,"TOURS & TRAVELS ");
setcolor(i+6);

settextstyle(DEFAULT_FONT,HORIZ_DIR,2);
outtextxy(320,240,"Project made by - ");
settextstyle(SMALL_FONT,HORIZ_DIR,6);
setcolor(2);
outtextxy(320,285,"Prashasti Mishra & Anuradha Dalmia ");
setcolor(i+6);

settextstyle(SMALL_FONT,HORIZ_DIR,6);
outtextxy(320,325,"A Complete Tours & Travels Management Package");
settextstyle(SMALL_FONT,HORIZ_DIR,6);
setcolor(CYAN);

outtextxy(450,380,"Press any key to continue..... ");

}
settextstyle(TRIPLEX_FONT,HORIZ_DIR,5);
setcolor(i+5);
outtextxy(320,65+10*i,"TOURS & TRAVELS ");
delay(500);
clearviewport();
delay(100);
setcolor(WHITE);

}

//if((s=getche())>=0);
settextjustify(LEFT_TEXT,TOP_TEXT);
settextstyle(DEFAULT_FONT,HORIZ_DIR,5);
} // END OF STARTER FUNCTION


void last(void)
{
float y1,a,b,i,axisx,axisy;
int c,z=1;
long float x;
int gdriver = DETECT, gmode, errorcode;
clrscr();
initgraph(&gdriver, &gmode, "c:\\bgi");
// setbkcolor(BLACK);
for(i=0;i<=2;i+=.5)
{
for (x=-12.3662/2;x<=12.3662/2;x+=0.01745)
{
a=-i*exp(-(x*x));
b=100*a;
c=b;
y1=p+c;
putpixel(318+x*100,y1,z);
delay(1);
}
z++;
}
axisx=37;axisy=12;
for(i=.5;i<=2;i+=.5)
{
gotoxy(axisx,axisy);
axisy-=3;
sound(750*i);
delay(200);
nosound();
}
axisx=2;axisy=17;
for(i=-3;i<=3;i++)
{
gotoxy(axisx,axisy);
axisx+=12;
sound(750*i);
delay(200);
nosound();
}
settextjustify(CENTER_TEXT,CENTER_TEXT);
for(i=2;i<=9;i++)
{
settextstyle(TRIPLEX_FONT,HORIZ_DIR,5);
setcolor(i+6);
outtextxy(320,210+25*i,"THANK YOU ");
}
getch();
} // END OF LAST FUNCTION.


//MAIN BODY OF THE PROGRAM
void main (void)
{
int ok,y;
int gdriver=DETECT,gmode,errorcode;
initgraph(&gdriver,&gmode,"");

starter();
do
{
initgraph(&gdriver,&gmode,"");
graphresult();
clrscr();
clearviewport();
setbkcolor(BLUE);
for(y=1;y<5;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\t\tENTER CHOICE\t\t\t\t\t";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
cout<<"\t\t\t HILL STATION ------> 1\n";
cout<<"\t\t\t SOUTHERN DESTINATION ------> 2\n";
cout<<"\t\t\t RELIGOUS PLACE ------> 3\n";
cout<<"\t\t\t SEA SIDE ------> 4\n";
cout<<"\t\t\t WILD LIFE SANTURIES ------> 5\n";
cout<<"\t\t\t SHOPPING CENTRES ------> 6\n";
cout<<"\t\t\t HISTORICAL PLACES ------> 7\n";
cout<<"\t\t\t EXPLORE EAST ------> 8\n";
cout<<"\t\t\t PROGRAMMER ------> 9\n";
cout<<"\t\t\t EXTRA ------> 10\n";
cout<<"\t\t\t EXIT ------> 11\n";
cout<<"--------------------------------------------------------";
cout<<"------------------------";
for(y=1;y<10;y++)
cout << "\t\t\t\t\t\t\t\t\t " << endl;

cout<<"\t\t\t Enter choice : ";
cin>>ok;
switch(ok)
{
case 1:hill();
break;
case 2:south();
break;
case 3:religion();
break;
case 4:seas();
break;
case 5:sancturies();
break;
case 6:shopping();
break;
case 7:historical();
break;
case 8:east();
break;
case 9:pass();
break;
case 10:extra();
break;
case 11:
break;
default:cout<<"INVALID CHOICE \n";delay(1500);break;
}
closegraph();
}
while (ok!=11);
last();
}

2006-11-19 22:42:45 · 5 answers · asked by Anonymous in Programming & Design

2006-11-19 22:42:41 · 4 answers · asked by Shawna S 1 in Television

I came off the pill in October as I kept getting periods in the middle of my cycle and not on my break, my last period was 5 weeks ago, my breasts are sore sometimes and have never been before, I am getting very thick discharge (white, no smell). Me and my partner have been together for 2 years. We had sex once without a condom forgetting I was no longer on the pill remembering in the middle stopping and putting one on. Is it likely I am pregnant or not?

2006-11-19 22:42:39 · 22 answers · asked by Kate 2 in Pregnancy

What are your opinions? Is it immoral?

2006-11-19 22:42:38 · 19 answers · asked by Syddy 2 in Singles & Dating

Plz can u suggest me something for my hair

2006-11-19 22:42:32 · 6 answers · asked by pooh 1 in Hair

I'm writing a poem that I'm thinking about putting in my blog on myspace. The thing is it's about someone that is on my friends list and I'm not sure that I should post it. I know it sounds simple and that I should just not post it if I reservations or set it to private. I've always been an honest and up front person. Even when it comes to my heart. But I've been hurt resently and I find my self(against my wishes) falling for someone again. And I just really want to be careful this time. I'm not sure if I want to be so telling so soon. But I would like to share what I wrote. What do I do?

2006-11-19 22:42:31 · 4 answers · asked by sixnow25 2 in Singles & Dating

For example, can you describe green without saying tree or grass; can you describe blue without mentioning the sky?

The only one I can think of is red, which is a hot colour.

The reason I ask is, since there is no way to prove whether or not we are looking at the same colour (e.g. what you perceive as a green tree, I might see as a yellow tree, but I recognise your yellow as my green), we can not agree on one of the most basic principles of life. If we can't even agree what colour a tree is, how can we agree on anything?

2006-11-19 22:42:26 · 24 answers · asked by people are scum 4 in Polls & Surveys

What did you feel after reading/listening to the music of Carrie Underwood, titled JESUS TAKE THE WHEEL? I mean, what is the meaning of the song for you?

2006-11-19 22:42:23 · 3 answers · asked by Anonymous in Celebrities

it have to cleary show the meaning in that sentence.

2006-11-19 22:41:50 · 7 answers · asked by Anonymous in Words & Wordplay

so yer i was wondering if it is freaky to u girls to have a guy keep a picture of u in their wallet and look at it...

2006-11-19 22:41:44 · 10 answers · asked by n707jt 2 in Singles & Dating

I think I can live with a girl forever commited to eachother without the whole marriage thing and still be just as happy or even happier
...
but most of the girls wanna get married... so I can't have a family and kids without gettin married?.. I just dont believe there's a point to it .. If you trust eachother and love eachother does a ring really
matter ? ... If you find someone you truly love I dont think marriage is important...
And I always see on TV... husband kills wife... or wife kills husband.... I dont want no drama in my life so i dont wanna have that problem lol...

2006-11-19 22:41:39 · 9 answers · asked by vegas_b0y 1 in Marriage & Divorce

Don't tell me how bad it is for me; I've sucked my thumb all my life and, so far, no problem. I just feel that if I can do so all night it will leave me even more relaxed but I wake up with my thumb out, though I go to sleep sucking it.

2006-11-19 22:41:32 · 5 answers · asked by lazurm 3 in Other - General Health Care

I have been married for 3 years. Recently, I have a stronge feeling of creating a family and having children. However, wife doesn't really want to have children due to her busy school, plus she is afraid to have another miss carriage like 2 years ago. What are the bettery ways to open up the disscussion about having children. She doesn't have as much sex drive as before. Please send me some suggestion. Thank you very much.

2006-11-19 22:41:22 · 9 answers · asked by Nate L 1 in Marriage & Divorce

I live in the basement and the floor is concrete and i have one of those big rugs its almost black. and its covered with cat hair. i dont have much time nor do i want to spend tons of time cleaning this. what would be some fast and long term ways to clean the hair off my carpet. and products that would get the hair up and just anything else. thank u hope to find some good idea''s

2006-11-19 22:41:21 · 9 answers · asked by seandudczak 1 in Cats

i have a phobia for clowns and vomit i hate them both how do you cure them and does anyone else suffer with what seems to be rediculous phobias

2006-11-19 22:41:14 · 15 answers · asked by pebbles 2 in Other - Health

i missing he

2006-11-19 22:41:08 · 2 answers · asked by KARINE D 1 in Bangalore

Is loneliness proportional to being understood?

Couldn't one be surrounded with great company all the time and still be lonely?

What could you have to express to the powers that be, that isn't already known?

2006-11-19 22:41:06 · 10 answers · asked by jonas_tripps_79 2 in Religion & Spirituality

2006-11-19 22:41:03 · 3 answers · asked by ThePanMan 1 in Singles & Dating

I'm a very light sleeper and therefore probably not the best candidate for a cat owner, but nonetheless...

I simply cannot continue to lose entire nights of sleep because my 1 1/2 year-old male cat won't leave me alone.

Help!

2006-11-19 22:41:00 · 21 answers · asked by Anonymous in Cats

Like if you want to close an account, how do i go about it? I want to close it this afternoon

2006-11-19 22:40:53 · 2 answers · asked by Anonymous in Other - Business & Finance

A good friend and myself recently became very touchy and flirty, we had a falling out so nothing ever happened, we have made up but there is still underlying tension about what did not 'happen'. Will we be able to go back to what is was like before the attraction got so out of hand?

2006-11-19 22:40:49 · 6 answers · asked by Anonymous in Singles & Dating

Religion does not seem to serve any other purpose but to give old-fashioned, empty, narrow-minded people some kind of meaning. Religion is supposed to be based on love but, how many Christians, Catholics, etc... are angry, unhappy, etc...MANY. They're also weak because they need something to use as a crutch to keep going. I know I was.

2006-11-19 22:40:45 · 23 answers · asked by Diana Chance 1 in Religion & Spirituality

2006-11-19 22:40:32 · 6 answers · asked by ezen 1 in Philippines

mark hunt defeated crocop and lost with josh barnett but crocop defeated josh.What type of logic is this.Is there any winning chance of crocop with hunt

2006-11-19 22:40:18 · 4 answers · asked by deva 3 in Martial Arts

I love the one boy but i know that i never married to her.there r lots of reason. One day me and my friend bit that she praposed to my boy friend.and she tell her that she know him from childwood.But he forget him.at first boy surprised he tell that i have only one girl friend etc.but my friend say who is she.my friend gave him lot of message,& say some emotional words to him.now he go through to her.and say to me that i do n't disturb her new friend.her voice he like.I know that the girl is my friend but suppose if there is anyone else then what could happen.

2006-11-19 22:39:56 · 5 answers · asked by SAPNA D 2 in Friends

How do you get to his warradonga????

2006-11-19 22:39:38 · 0 answers · asked by SpearTheBeardedClam 1 in Singles & Dating

fedest.com, questions and answers