ok so I am being asked to
"Write a class called decimalHexOctalBinary that has four properties mainly decimalUnsignedInt (base 10), hexadecimalUnsignedInt ( base 16), octal UnsignedInt (base 8), and binaryUnsigned Int (base 2). Use gets and sets such that if anyone changes any of these four properties, the other three are altered to have corresponding values. You will need a number of additional private methods (e.g., functions) to implement this class.
Place code within main() to demonstrate that the class works correctly.
Include the UML notion appropriate for this class."