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

Computers & Internet - 9 October 2006

[Selected]: All categories Computers & Internet

Computer Networking · Hardware · Internet · Other - Computers · Programming & Design · Security · Software

Hey I'm having trouble design this sort of program so I was wondering if you could help me:

"receive a 4-digit positive integer from the user and check if the input is a palindrome (A palindrome is a sequence of characters that reads the same backward and forward.) if the input is not a 4 digit integer, allow the user to enter the input again."

2006-10-09 13:48:06 · 1 answers · asked by Steven Fenix 3 in Programming & Design

can any of u a site where i can download some software that can do the same things as photoshop, the only htings i really care about are filters and liquify

2006-10-09 13:45:59 · 4 answers · asked by TROGDOR the BURNINATOR 2 in Software

im thinking of getting vonage or some other voip provider but all i can find is the "great" things about them. i just want to know some disadvantages like not being able to recieve calls or make calls and the like. thanks

2006-10-09 13:42:13 · 5 answers · asked by maxpowerrys 1 in Internet

I am looking to buy a computer. And have seen this brand, and trying to decide if its a good brand or what? Does anyone own or know anything about them?

2006-10-09 13:41:35 · 12 answers · asked by Scotty W 2 in Desktops

Hello there! I need to alert everbody and want to know how and where to denounce a this web site that apparentely gives the lowest air fares. www.great-travel.net They confirm you cheap flights, they ask you for your credit card details, they charge the amount and they do not give you anything

2006-10-09 13:38:21 · 3 answers · asked by Anonymous in Internet

I have to make a brochure does anyone know how to go about it on word?

2006-10-09 13:38:13 · 4 answers · asked by j_montgomery_50 2 in Programming & Design

I installed a desktop theme the other day & it was working no theres no sound at all, HELP !!!!

2006-10-09 13:36:28 · 5 answers · asked by osu_fanz 4 in Other - Hardware

I have never backed up my computer before and I am worried that something is going to happen and I will lose all my stuff. Can someone please tell me what I need to do step by step to back everything up?

2006-10-09 13:36:12 · 4 answers · asked by Silly ol Me 2 in Other - Computers

Can you do just different scenes?

2006-10-09 13:29:43 · 2 answers · asked by mwilli95 3 in Other - Computers

I got this game about 3 years ago and 2 years later for Christmas we got a new computer hoping that the Sims 2 would work on it, but it still didn't. When ever I try to install it, it stops at 19% and it says, "A problem occurred when trying to transfer the file 'TSData\Res\Sound\Sfx.1package' from the media." Does anyone know what that means and how to fix it?

I brought it to my grandparents house and installed it on their computer and it worked so I know that the CD ins't bad. It has to be something wrong with my computer, but I don't know what it needs. And I do have Windows XP.

2006-10-09 13:26:04 · 4 answers · asked by Brittany 3 in Software

2006-10-09 13:23:04 · 5 answers · asked by sweetdreams4@verizon.net 1 in Software

I'm sorry, I,m learning Fnglish at the moment,I guess my Engglish has something incorrect. Did you get what I wnt to know ?

2006-10-09 13:21:56 · 1 answers · asked by Duc V saigoneyes 1 in Internet

How do you make your person thingy like make a charicter face thing... Im just a smily face (lol)... Pleasee help me i wanna know.

2006-10-09 13:21:47 · 1 answers · asked by bean 1 in Other - Computers

this is computer applications

2006-10-09 13:20:19 · 3 answers · asked by may514gurl 1 in Other - Computers

where can u get mac computers and how much do they cost? Or a dell under $500

2006-10-09 13:19:09 · 3 answers · asked by Anonymous in Other - Computers

2006-10-09 13:19:07 · 2 answers · asked by Anonymous in Internet

What does number next to the stars in a limewire search mean? and how much of an influence is it on download speeds?

2006-10-09 13:17:25 · 4 answers · asked by 'Chuco Carlos 2 in Computer Networking

A maze is a two dimensional structure with an entrance and sometimes an exit. The job for this program is to determine if the given maze has an exit. All of the mazes will have the entrance point at the top left corner. The exit point can be anywhere in the far right column. A valid path will be a continuous block of 1s that connect the top left corner to any spot on the far right column. A valid path can only be connected horizontally or vertically. Diagonal connections are not legal. The 1s in the file represent the path and 0s represent the walls of the maze. Output EXIT FOUND if there is a path leading to an exit out of the maze. Output NO EXIT FOUND if there is not a path leading out of the maze.

Helpful Hints / Assumptions: All input will be 1s and 0s. The 1s represent the path and 0s show that there is no path in that area.
Sample Data :
5
1 0 0 0 1
1 1 1 1 0
0 0 1 0 1
0 1 1 1 0
0 0 0 0 1
7
1 0 0 0 0 1 1
1 1 1 1 0 1 0
0 0 1 0 0 1 0
0 1 1 1 0 1 0
0 1 0 1 0 1 0
0 1 0 1 1 1 0
0 1 0 1 0 0 1
7
1 0 0 0 0 1 0
1 1 1 1 0 1 0
0 0 1 0 0 1 0
0 1 1 1 0 1 0
0 1 0 1 0 1 0
0 1 0 1 1 1 0
0 1 0 1 0 1 0
7
1 0 1 1 0 1 0
1 1 1 1 1 1 0
0 0 1 0 0 0 1
0 1 1 1 1 1 1
0 1 0 1 0 1 0
1 1 1 1 1 1 0
0 1 0 1 0 1 0
10
1 0 1 1 0 1 0 1 1 1
1 1 1 1 1 1 0 1 0 1
0 0 1 0 0 0 1 1 1 1
0 1 1 1 1 1 1 1 0 1
0 1 0 1 0 1 0 1 0 1
1 1 1 1 1 1 0 1 1 1
0 1 0 1 0 1 0 0 0 1
0 1 1 1 0 1 0 0 0 0
0 1 0 1 0 1 0 1 1 1
0 1 1 1 1 1 0 1 1 1
10
1 0 1 1 0 1 1 1 1 0
1 1 1 1 1 1 0 1 0 1
0 0 1 0 0 0 1 1 1 0
0 1 1 1 1 1 1 1 0 1
0 1 0 1 0 1 0 1 0 1
1 1 1 1 1 1 0 1 1 0
0 1 0 1 0 1 0 0 0 0
0 1 1 1 0 1 0 0 1 1

Sample Output :
1 0 0 0 1
1 1 1 1 0
0 0 1 0 1
0 1 1 1 0
0 0 0 0 1
exit not found

1 0 0 0 0 1 1
1 1 1 1 0 1 0
0 0 1 0 0 1 0
0 1 1 1 0 1 0
0 1 0 1 0 1 0
0 1 0 1 1 1 0
0 1 0 1 0 0 1
exit found

1 0 0 0 0 1 0
1 1 1 1 0 1 0
0 0 1 0 0 1 0
0 1 1 1 0 1 0
0 1 0 1 0 1 0
0 1 0 1 1 1 0
0 1 0 1 0 1 0
exit not found

1 0 1 1 0 1 0
1 1 1 1 1 1 0
0 0 1 0 0 0 1
0 1 1 1 1 1 1
0 1 0 1 0 1 0
1 1 1 1 1 1 0
0 1 0 1 0 1 0
exit found

1 0 1 1 0 1 0 1 1 1
1 1 1 1 1 1 0 1 0 1
0 0 1 0 0 0 1 1 1 1
0 1 1 1 1 1 1 1 0 1
0 1 0 1 0 1 0 1 0 1
1 1 1 1 1 1 0 1 1 1
0 1 0 1 0 1 0 0 0 1
0 1 1 1 0 1 0 0 0 0
0 1 0 1 0 1 0 1 1 1
0 1 1 1 1 1 0 1 1 1
exit found

1 0 1 1 0 1 1 1 1 0
1 1 1 1 1 1 0 1 0 1
0 0 1 0 0 0 1 1 1 0
0 1 1 1 1 1 1 1 0 1
0 1 0 1 0 1 0 1 0 1
1 1 1 1 1 1 0 1 1 0
0 1 0 1 0 1 0 0 0 0
0 1 1 1 0 1 0 0 1 1
0 1 0 1 0 1 0 1 1 1
0 1 1 1 1 1 0 1 1 1
exit not found

2006-10-09 13:17:07 · 3 answers · asked by Superman049 1 in Programming & Design

What is it and why is it better?

2006-10-09 13:16:10 · 7 answers · asked by Anonymous in Other - Computers

does any one know the web site for finding out phone numbers? i had one on my computer but i have lost it it was something like ub4u. thanks in advance.

2006-10-09 13:14:55 · 11 answers · asked by Linda 6 in Internet

is there a way to change the language of windows xp sp2? because my windows xp is in spanish and all the installers are in spanish... i managed to get the keybord to eng config but the language isnt... help!!!!!!!!!!!

2006-10-09 13:12:30 · 5 answers · asked by no 1 1 in Software

My Internet Explorer (and any other browsers as well) are running terribly slow right now, sometimes not even working at all, but I know it isn't a connection problem as all other computers on this connection, any messenger programs and online games run fine. The only other thing I've noticed going wrong is my keyboard seems to fail every now and then and miss a keypress.

I've run my antivirus and anti spyware and checked out everything to see hats cauing this but I cant seem to figure it out. anyone have any ideas?

2006-10-09 13:10:54 · 13 answers · asked by spiffo 3 in Security

I want to be on top of the office's new best websites! Places like youtube and others have kind of worn their course; so are their any new popular sites!

2006-10-09 13:03:47 · 6 answers · asked by Anonymous in Internet

I don't have any special restrictions as this is my home computer. I get most of the pics but in some threads, I get a red circle with a line through it.

2006-10-09 13:03:07 · 3 answers · asked by Todd157k 1 in Internet

fedest.com, questions and answers