This is a repository to prepare for the ACSL (American Computer Science League) Competition and collaborate with my teammates.
ACSL Problems List
Write a Java program that prints all even numbers from 1 to 100 using a for loop.
Write a program to find the sum of all integers between 1 and 50 using a while loop.
Write a program to calculate the factorial of a given number n using a for loop.
Create a "guess the number" game using a while loop. The computer randomly picks a number between 1 and 100, and the user tries to guess the number. The loop continues until the user guesses correctly.
Write a Java program that prints the multiplication table for a number provided by the user using nested for loops.
**