0
votes
4answers
70 views
parsing float into string
Hi
I have a number like so: 4.47778E+11
Can anyone give me a way of converting that into its number representation easily in c#?
Thanks
0
votes
3answers
44 views
HTML/CSS: Floating element in H2 element
This is the HTML:
<h2>
Log in
<a onclick="doSomething()" href="#" class="float-right"> </a>
</h2>
This is the CSS:
.float-right {
float …
1
vote
1answer
34 views
setting height of DIV with CSS in relative positioning
I have some HTML+CSS code that wants to layout several DIVs. The layout is like this: all DIVs stay in a parent DIV whose size is fixed. Then each child DIV should stay on its own …
0
votes
3answers
59 views
Menu Positioning in CSS
I'm working on simple HTML/CSS site, using a horizontal floated CSS menu. The problem i have is i cant figure out how to alter the positioning of the menu. Its currently at the top …
-1
votes
4answers
97 views
What is the inclusive range of float and double in Java?
What is the inclusive range of float and double in Java?
Why are you not recommended to use float or double for anything where precision is critical?
0
votes
3answers
58 views
Internet Explorer: overflow and float
Hi folks,
I have an img inside a div. I have set the img to "float: right", and the div to "overflow: hidden". Because the div is narrower than the img, I expect the left portio …
2
votes
8answers
210 views
Fastest way to zero out low values in array?
So, lets say I have 100,000 float arrays with 100 elements each. I need the highest X number of values, BUT only if they are greater than Y. Any element not matching this should …
0
votes
4answers
53 views
First entry not easy to click issue in firefox,a bug?
Pay attention to the part in blue in the first table.
Can check out the problem here
EDIT
reproduce by double click at the upper part of first entry.
1
vote
2answers
72 views
Python Class with integer emulation
Given is the following example:
class Foo(object):
def __init__(self, value=0):
self.value=value
def __int__(self):
return self.value
I want to have a c …
0
votes
3answers
199 views
php float calculation 2 decimal point
Hi everyone,
Got another math calculation problem again.
$a = 34.56
$b = 34.55
$a do some calculation to get this figure
$b is doing rounding nearest 0.05 to get this figure
w …
1
vote
3answers
65 views
CSS: What does clearing INSIDE a floated div do?
Quick question!
Does putting a "clear" element INSIDE a floated div do anything?
Like:
<div style="float: right">
blah blah
<div style="clear: right"></div>
< …
0
votes
4answers
73 views
define float as center in css
Hi,
How can I define a define float as center in css? actually i need a layout between right and left and also i tried "text-align" but it doesn't work and the "float" property jus …
0
votes
5answers
63 views
Need CSS sidebar height to expand with content.
I have a two column layout, with a gray sidebar on the right. I need the sidebar's height to expand when the height of the left column is increased (due to content being dynamicall …
2
votes
4answers
144 views
Python convert hex to float
How to convert the following hex string to float (single precision 32-bit) in python?
"41973333" -> 1.88999996185302734375E1
"41995C29" -> 1.91700000762939453125E1
"470FC6 …
2
votes
3answers
100 views
Why do floats having trailing .0 when it is exactly an integer?
Read this question carefully because I am not asking how to get rid of trailing zeros, that's easy.
What I am asking is why does 123d become "123.0"?
A IEEE 64-bit float can repr …
