Exercise: Loops
Learn how to apply loops in C# programming by developing a function to generate a sequence of even numbers and creating multiplication tables. This lesson enhances your coding skills for Unity-based AR projects by giving hands-on experience with common loop structures.
Exercise 1: Even sequence generator
Problem statement
Your task is to complete the EvenNumbers function by adding a loop that will collect the first n even numbers into a list. The sequence of even numbers ...