Exercises
Last updated
Last updated
Factorial Calculation:
Create two programs that calculates the factorial of a given integer. The first solution should have a while loop; the other solution should use a for loop
Sum of Numbers:
Write a program that calculates the sum of all integers from 1 to N, where N is a user-entered positive integer.
Longest Name:
Create a program that takes an unknown amount of names and outputs the longest name. You will know that the inputs are done when the user has inputted a string of X.
Prime Number Checker:
Create a program that checks whether a given number is prime or not.
Reverse a Number:
Write a program that reverses a given integer. For example, if the input is 12345, the program should output 54321.