Re: How to make an Iphone App? Programming Mobile Development by jonathannweyer … building something that relies on hardware features like Bluetooth, definitely double-check what’s supported, since Apple can be more restrictive… Re: Any jQuery 4 users? Programming Web Development by Neil_brown001 … .bind(), so if you're upgrading, you’ll want to double-check your codebase for those. The codebase is now fully… Re: How would we poison AI web crawls? Hardware and Software Information Security by Dani … session for visitors finding DaniWeb through ChatGPT is more than double that of visitors finding DaniWeb from all other sources. Us… Re: Does Google's Disavow-Tool still work - or does it hurt? Digital Media Digital Marketing Search Engine Strategies by ashleydent4u The Disavow Tool was definitely a double-edged sword—while it helped with cleaning up spammy backlinks, … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … higher (more than one second), and the CLS was almost double. (The same goes for the Lighthouse report in Developer Tools… Re: Problem with MS Office shortcut bar Hardware and Software Microsoft Windows by Anonymous_2133 I have always been a fan of the Office 2000 shortcut bar. It has been on my windows desktop since I got it, up until Windows 10 19H2 (RIP). If you are still looking for a replacement, try searching for "Quick Pick" by "Automation in Motion". Use the double quotes or you will have to wade through many pages of irrelevant results. Re: Google Search Console -> Page indexing Digital Media Digital Marketing Search Engine Strategies by ashleydent4u … aren’t indexed—it’ll help narrow things down. Also, double-check your sitemap is submitting all intended URLs and that… Double to string conversion with sprintf Programming Software Development by sreehari.rk double b = 3.0000; char s[20]; sprintf(s,"%f&… Re: Double type problem in C Programming Software Development by IsharaComix Double variables just don't have that much precision. If you need numbers that are that fine-tuned, you need to look for an "arbitrary/multiple precision" library - something like GMP [url]http://gmplib.org/[/url] Hope this helps. Re: Double to float on a large scale Programming Software Development by scru Double precision is more precise than float, and performance really shouldn'… Re: double???? Programming Software Development by masijade … of them to a double [code]double a = (double) 2 / 3; // or double b = 2 / (double) 3; // or double c = (double) 2 / (double) 3; // or double d = 2.0… / 3; // or double e = 2 / 3… double???? Programming Software Development by girl.java … class Qustion2 { public static void main (String args[]){ double x =2/3; double y = (3*x*x)-(8*x)+4; JOptionPane.showMessageDialog… Re: double???? Programming Software Development by kvprajapati Read [URL="http://java.sun.com/docs/books/jls/third_edition/html/lexical.html#3.10"]Literals[/URL] and [URL="http://java.sun.com/docs/books/jls/third_edition/html/conversions.html"]Conversions and Promotions.[/URL] [code] .. double x=(double)2/3; .. [/code] double Programming Software Development by nitin1 can anyone explain me the all precison and exponent, significant bits which double can handle ? i am not getting it. wiki says it has 53 bits significant bits and 11 exponent. am a little bit confused. can anyone explain me ? (in their own way) thanks alot. although i have used double alot but now , come up with some problem. thanks. Re: double Programming Software Development by nitin1 … ? i mean when i am printing the value of some double using compiler,executing code, i am getting only 17 digits… how can i infer from these things the max value double can hold? checked by 10/3 and it give me… Re: double???? Programming Software Development by girl.java … occurs. [COLOR="Red"] but when we talking about double, it has a higher precision. so 2/3 is valid… Re: double???? Programming Software Development by masijade … in Integer 0. And the Integer 0, automatically converted to double is 0.0. Edit: And what do you mean by… Re: double???? Programming Software Development by girl.java ok don't be angry :) i just want to know why thats all!!! i'm student in the first year coz that i'm asking so many questions :( and Unfortunately i didn't get it when i run this program with double=2/3 i get the result=4.0 instead of 0 i wanna know why ? :) Re: double Programming Databases by smantscheff When I test your code, the line [CODE]insert into hh values(27.22); [/CODE]results in the mysql error[ICODE] 1264: Out of range error for column id[/ICODE] You have to define the double field with as much decimal places as needed. Change the table definition to [CODE]create table hh (id double(5,2)); [/CODE]and it will work. double... Community Center Geeks' Lounge by rex_b sorry it froze and double posted double Programming Databases by bangla Hi, 1. I create a table in mysql: [CODE]create table hh ( id double(3,2) );[/CODE] 2.[CODE][ insert into hh values(27.22) insert into hh values(7.49)[/CODE] 3. [CODE]select * from hh[/CODE] result 9.99 7.49 why i get 9.99 why not 27.22? Thanks. Re: Double to string conversion with sprintf Programming Software Development by Duoas …; #include <sstream> int main() { double b = 3.0000; std::string s; // convert double b to string s { std::ostringstream ss… double operation problem Programming Software Development by hassedo …,int n8,int n9,int n10, double **pX1, double **pX2,double **pX3, double **pX4,double **pX5, double**pX6,double **pX7, double **pX8,double **pX9, double **pX10, int ctrrow, int ctrcol… Re: double operation problem Programming Software Development by Dave Sinkula … think about rewriting that ... thing ... using arrays. But here: [CODE]double computation([COLOR="Red"]matrix [/COLOR]k, int mA…,int n8,int n9,int n10, double **pX1, double **pX2,double **pX3, double **pX4,double **pX5, double**pX6,double **pX7, double **pX8,double **pX9, double **pX10, int ctrrow, int ctrcol… double void error need help before turning it in Programming Software Development by jason.angeles.75 … the selection"); } public static double showKilomters(double meters) { double kilometers = meters* 0.001; } public static double showInches(double meters) { double inches= meters * 39.37; } public… Re: double void error need help before turning it in Programming Software Development by Schol-R-LEA …) { return meters * 0.001; } public static double showInches(double meters) { return meters * 39.37; } public static double showFeet(double meters) { return meters * 3.2… Re: double void error need help before turning it in Programming Software Development by stultuske a remark on cool_zephyr's post: public static void showFeet(double meters) { double feet= meters * 3.2; return feet; } no ... this is not… wouldn't even compile. maybe like this: public static double showFeet(double meters) { double feet= meters * 3.2; return feet; } or something like… Double To unsigned char Overflows Programming Software Development by triumphost … Xyz) { RGB Result; double X = Xyz.X / 100; double Y = Xyz.Y / 100; double Z = Xyz.Z / 100; double Red = X * 3.…= X * -0.9689 + Y * 1.8758 + Z * 0.0415; double Blue = X * 0.0557 + Y * -0.2040 + Z * 1.0570… every time. Why? How can I keep it as double? Or should I just change it all to float? … Re: double void error need help before turning it in Programming Software Development by cool_zephyr check line 47 public static double showKilomters(double meters)..spelling mistake and the showFeet() function should return a double variable like this public static void showFeet(double meters) { double feet= meters * 3.2; return feet; } double is not large enough, what to do - pow(x,y) Programming Software Development by xtremerocker …; long long sum = 0; for(long double n = 2; n <= thresh; n++) { long double t1 = ((3*(pow(2,n)))-1); long… double t2 = ((3*(pow(2,(n-1))))-1…*(pow(2,((2*n)-1))))-1); long double n1 = (pow(2,n)*t1*t2); long double n2 = (pow(2,n)*t3); sum…