Difficulty: Low
Title: Sum of Numbers
Description:
Using a loop write a program to have the user input 5 numbers (prompt them each time for each number) and find the sum and average of the numbers.
Output:
Input a number: 1
Input a number: 2
Input a number: 3
Input a number: 4
Input a number: 5
The sum is: 15
The average is: 3
Difficulty: Low
Title: Cube
Description:
Write a program to display the cube of x numbers up to an inputted number.
Cubed Formula: 2 x 2 x 2 = 8
NOTE: Your output must match the example output below.
Output:
Cube Up To: 3
Cube 1: 1 cubed is: 1
Cube 2: 2 cubed is: 8
Cube 3: 3 cubed is: 27
Difficulty: Low
Title: Number Nine
Description:
Write a program to find the numbers of all integers within the range specified by a user, which are evenly divisible by 9.
Output:
Enter the start of the range: 100
Enter the end of the range: 200
108 117 126 135 144 153 162 171 180 189 198
The sum is: 1,683
Difficulty: Medium
Title: Right Triangle
Description:
Write a program to make a right angle triangle with the number increased by 1 using a loop.
Output:
Enter Number of Rows: 4
1
2 3
4 5 6
7 8 9 10