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

Programming & Design - December 2007

[Selected]: All categories Computers & Internet Programming & Design

Should I do
or line

?
Please help!

2007-12-15 04:14:30 · 4 answers · asked by ? 3

Write the definition of a method dashedLine , with one parameter, an int .

If the parameter is negative or zero, the method does nothing. Otherwise it prints a complete line terminated by a newline to standard output consisting of dashes (hyphens) with the parameter's value determining the number of dashes. The method returns nothing.

Here is what I wrote and is not working:

void dashedLine(int a){};
{
if (a>=0)
{
a=0;
}
if (a > '-' )
{
a= '-';
}
else
{

System.out.println( "a: " ='-');
}
return

Thanks for any help ...

2007-12-15 04:04:05 · 5 answers · asked by cheryl b 1

i have two computer one has many different programs that i want to put onto my other computer..I dont have the discs for those programs, so i got to figure out a way to transfer the programs

Both my computer can burn discs

2007-12-15 03:57:50 · 6 answers · asked by Anonymous

The seven common solutions that organizations are pursuing to solve their productivity problems are:
 Hiring more programmers and systems analysts.
 Hiring more talented programmers and systems analysts, and giving them superior working conditions.
 Letting users develop their own systems.
 Better programming languages.
 Attacking the maintenance problem.
 Software engineering disciplines.
 Automated tools for systems development.

2007-12-15 02:48:09 · 1 answers · asked by AhLcYnC 1

Hello, can you go on the page http://www.tv-direct.fr/pubpop1.php and tell me if you see an advertisement for Apple Mac?
Thank you.

2007-12-15 01:20:52 · 12 answers · asked by blabla 1

1 8
1 8 27
1 8 27 64
plz help me or else i'll loose my practical marks!!!!!!

2007-12-14 21:35:34 · 2 answers · asked by shinchan 2

Here's the code:
----------------------------------------------------------
$XXX = 500; //value can be input numerous ways
$A = $XXX - (($XXX * 0.034)+0.3);
$B = $A - ($A * 0.1);
$C = $B* 1.1;
$D = $C - (($C* 0.025) + 5);
$E = $D * 7827;
echo number_format($E);
// show your answer in this formate show 688,413

?>
----------------------------------------------------------
* originally helped by,
catbertnc and Mohd.SAQIB Q.. Thanks Guys!!

Now further question:
What's the input syntax, so i will have a box,
like a search box, where i can key in various input numbers.
And when i click "calculate" it will echoes E.

What i mean is to have a web page, with an input box and calculate button.
And when pressed will automatically shows the result.

Thank you verryyy much.. :D

2007-12-14 19:27:51 · 3 answers · asked by Le Buane 2

I want to build a property management program for hotels. However I am not sure which type of programming language would work best for this, and which type I should learn?

Help please.

2007-12-14 18:09:56 · 6 answers · asked by Anonymous

2007-12-14 17:56:59 · 8 answers · asked by slato 1

I made Tetris in Java, and I'm trying to find a good tutorial in how to implement basic networking. I want to be be able to run my program off two different computers and play a competitive game on the network or over the internet. I want to also add a feature to chat back and forth by text.

Do you know any good, straight forward tutorials that show how to do this?

2007-12-14 17:22:00 · 3 answers · asked by Jean-Francois 5

How do I get my files on the Internet? My host is Lunarpages... but I don't know what I need to do next.

2007-12-14 17:06:59 · 7 answers · asked by Anonymous

I have about 50 pictures of my g/f and i that i want to make into one collection to set as my desktop background. Does anyone know of any good programs to do this with, possibly ones that are free?

2007-12-14 17:01:18 · 5 answers · asked by carcoolguy9 3

I am quite smart though my GPA is 3.90 and I am in all honors and AP classes

2007-12-14 15:26:41 · 6 answers · asked by That guy 1

which 1 is more suited wth all advanced features ???

2007-12-14 15:13:38 · 5 answers · asked by adityarao88 1

Is This Possible On A Forum Site?

2007-12-14 14:19:07 · 1 answers · asked by Bobbert 2

So im doing a powerpoint and i wanna know how to like..make the text move, NOT the slide.
Ill probably have more questions as I make the powerpoint.
>.<

2007-12-14 12:41:15 · 4 answers · asked by nikki_t2 2

I'm trying to make some flash applications/games for my psp like a guide viewer and different things but i discovered that flash 8 wont work on the psp to well so i was wondering can anyone tell me where i can get something to help me make some flash stuff for my psp

Also I have flash 8 professional on my computer how can i use it to make flash lite applications for my psp

2007-12-14 12:39:16 · 2 answers · asked by Kehon H 1

Okay first im looking for a free no hassle emulator for a linux machine i have (it runs on damn small linux) and the games im looking for are Mortal Kombat(any) and some things like pacman and dig dug the (site doesnt have to have all) and second a website where i can get instruction on how to make the controlsi.e. joystick buttons.

2007-12-14 12:14:25 · 2 answers · asked by mr.tea100593 1

Im looking to make a morpg like www.tibia.com. I'v asked them if they have any book suggestions or tips for where to start but they said they couldnt help me out. Anyone here got any tutorials or E-books that can help me. Im a complete beginner so need to start at the begining. thanks...

2007-12-14 12:04:26 · 4 answers · asked by Rhys T 1

Sorry for the silly question i'm new to html.
I want my div tag to be 20px from the top of the page.
Here's my div tag:



I tried to put in top:20px but it did not work. How can I do this? Thanks!

2007-12-14 10:43:24 · 2 answers · asked by Anonymous

2007-12-14 10:16:26 · 6 answers · asked by mightymouse 2

Sorry about this silly question but I am new to html.
Here is the code for my div tag so far:



I am trying to figure out how to center it. I tried to put align="center" inside my code but it does not work. What else can I do to center it into my page? Thanks!

2007-12-14 10:12:09 · 6 answers · asked by Anonymous

1

I have this code:

if(!isset ($_SESSION [username] )
include("create.html");
exit();
?>

Apparently, there is something wrong with "include(...);"
the error is
Parse error: syntax error, unexpected T_INCLUDE in .. on line 3

This code worked fine on my original webhost, and now it doesn't work ???

Thanks in advance

2007-12-14 10:01:57 · 3 answers · asked by htmlmaster123 1


Final Prodject Henry The Hacker





width="250" height="100" border="0">



height="100" border="0">



height="100" border="0">



height="100" border="0">



height="100" border="0">


Security against Computer Hackers

How to Protect Yourself




2007-12-14 09:55:53 · 4 answers · asked by Biddness 2

Just wanna learn something new

2007-12-14 09:25:15 · 9 answers · asked by Anonymous

there is a program i had before that comes in a roll,

its not Powerpoint which comes in slides .
my mind has gone blank

its like Word ,and has backgrounds and most the tools Word has like font,size and colors

can any one tell me what it is

2007-12-14 08:57:37 · 2 answers · asked by Anonymous

I am creating a hyperlinks and rather than creating a outlook group, I would just like to enter email address, e.g., mailto: john.doe@any.com; jane.doe@any.com etc...

Thanks

2007-12-14 08:45:15 · 2 answers · asked by ACR-Man 2

Kay Well I Just Got GIMP yesterday And i Have No Clue At All How To Use It.
Care To Tell Me How?
Thanks
: )(L)

2007-12-14 06:15:09 · 6 answers · asked by Katrina 1

what are some proxy sites.

plz tell me some.

2007-12-14 04:38:57 · 7 answers · asked by Kimi 2

fedest.com, questions and answers