zoster gibrilian

Greenhorn
+ Follow
since Sep 17, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by zoster gibrilian

How can I find an occurrence of the first string in the second one?
Example: How can I find the first occurrence of the string �Post New Topic� in the source code of this page?
20 years ago
thank you...
but now i have another problem
if i input 1.9% it outputs 2%
i need 1.9% for my program...
maybe you can help me with this too...
20 years ago
what method can i use to format .07 into 7%
i have found in the java API the following method:
getPercentInstance

how can i use it?
please give me an example...
20 years ago
i need to concatenate 8-length() of 0's before a string that has as length: lenght().
In other words i have to write a loop that will print out (if needed!) 0's in front of a string ... in order to make it a 8 charachter string

P.S.
I can not believe that java does not have a function that prints a charachter n-times. Or does it?
20 years ago
If i have the following string:
string binary = "10000010111101010001101100000010";
How can i verify that the string is made up of only 0 and 1's?
20 years ago
Hi,
I have to define by "hard coding!?" a 32-bit binary string that represents an IP address.
1)Can u help me with a command to do this?
2)What is the bit-length of the testNum string below?
string testNum = "10000010111101010001101100000010";
3)What is hard coding?
Thanks
20 years ago
I need an if statement that determines the number of days in the month entered by the user.
Also a switch statement would be fine...right?
20 years ago