Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
HI.
könnte man obige frage besser als wie folgt lösen?
if (fmod(float(i)/j,1) == 0) { //... }
Mit int-Werten:
if(i%j == 0) ...
Mit floats:
if(fmod(i,j)==0) ...
der dank gebührt dir!