Exercise #2: Using for staement. Write a Java program to find and print the sum of values greater than a number'k, and t
Posted: Sat May 14, 2022 6:43 pm
Exercise #2: Using for staement. Write a Java program to find and print the sum of values greater than a number'k, and the number of values above 'k'. Insert your number: 10 Insert the number of values 5 1 20 5 70 10 The number of values above 10 is : 2 The sum of numbers above 10 is : 90