Java - Output the product of all three integers between 4 unequal integers
阿神2017-05-17 10:00:37
0
1
668
Write a program in Java to output the product of any three integers between 4 unequal integers. For example, input 1,7,3,4 calculation process: 734,134,174 ,173 Output: 84,12,28,21
闭关修行中......