/*
* What Is a Class? (The Java™ Tutorials > Learning the Java Language > Object-Oriented Programming Concepts)
*/
class Number {
private int x;

/*
* Providing Constructors for...