Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
帮助Java语言中的例子Android?
if(profile<50) scalar=0.85; if(profile>=50) scalar=0.7; rimWidthMin = (Math.round(((width*scalar)*0.03937)*2))/2; rimWidthMax = (rimWidthMin+1.5);
double scalar = 0.; if(profile<50) scalar=0.85; if(profile>=50) scalar=0.7; double rimWidthMin = (Math.round(((width*scalar)*0.03937)*2))/2; double rimWidthMax = (rimWidthMin+1.5);
几乎一样:P