| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/biblelamp/JavaExercises/master/Experiments/DoubleAndFloat.java | [Back] [Original] |
class DoubleAndFloat {
public static void main(String[] args) {
float f = 1/3f;
double d = 1/3d;
System.out.println(f);
System.out.println(d);
}
}
| Web Proxy Viewer | New URL | Original Page |