0
votes
3answers
767 views

Help with using a while loop and if statement

I'm trying to write a program that reads 2 numbers from the user and divides them. Here is the code I have so far: import java.util.Scanner; public class divideByZero { public static int ...
0
votes
2answers
2k views

Java: Printing out an object for debugging

I would like an easy way to print out a java object, or to say it another way, serialize an object as a string. I would like to see the values of all variables contained within the object, and if ...