Choose three of the following programs to implement using for loops. (UPDATE - only 3 of the 6).

Write a program that takes a name as input, reverses the order of the characters using a for loop, and outputs the reversed name on a single line.

Write a program that takes a message as input, and uses a for loop to calculate how many times the letter “e” appears in the message.

Write a program that takes a positive integer as input, adds up all of the integers from zero to the inputted number, and then prints the sum. Double-check the math on paper to make sure your program is working properly. If your user enters a negative number, show them a message reminding them to input only a positive number.

Use nested for loops to create a program that produces this output:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
Write a program that takes the input of a number and prints the multiplication table for that number (multiples from 1 to 12).

Write a program that asks the user to input a number and counts from 0 to 100 using the input as the interval for counting. For example, an input of 3 would result in 0, 3, 6, 9, etc.



Answer :