Page 1 of 1

Write a Java class that includes a method that calculates and displays all triplets where the values of a, b and c are l

Posted: Sun Jul 10, 2022 11:25 am
by answerhappygod
Write a Java class that includesa method that calculates and displaysall triplets where the values of a, b and c are less than 100 and a< b < c.
You must also limit the valueof c2 to multiples of 3.
You may use the Math class methods in your solution.