I want to generate a integer which should be combination of 2 integer and one int
and anytime I call generate it should generate same value for same input and for different combinations it should generate different value.
for example I passed to the service two integers 24, 25 and one int 76
assume it generated 242576
I restart jvm call the service pass the same values mentioned above it should return me same output 242576.
I want to do this using some math functionality not using string concatinating ?Any suggestions on acheiving this? any help is greatly appreciated.
miro
and anytime I call generate it should generate same value for same input and for different combinations it should generate different value.
for example I passed to the service two integers 24, 25 and one int 76
assume it generated 242576
I restart jvm call the service pass the same values mentioned above it should return me same output 242576.
I want to do this using some math functionality not using string concatinating ?Any suggestions on acheiving this? any help is greatly appreciated.
miro
Comment