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