In another Bruce Eckel exercise, the code I\'ve written takes a method and changes value in another class. Here is my code:
class Big { float b; } public
Don't use float. There is almost never a good reason to use it and hasn't been for more than a decade. Just use double.