ThoughtWorks Introductory programming assignments in Java
Prints one asterisk on the console.
Given a number n, prints n asterisks in one line.
Given a number n, prints n lines, each with one asterisk.
Given a number n, prints n lines, each with one more asterisk than the last.
Given a number n, prints a centered (isosceles) triangle of asterisks.
Given a number n, prints a centered diamond of asterisks.
Given a number n, prints a centered diamond with your name in place of the middle line.
Prints out the numbers 1 through 100 where instead of numbers divisible by three prints "Fizz", instead of numbers divisible by five prints "Buzz". instead of numbers divisible by three and five prints "FizzBuzz".
Given an integer N, returns a list of prime factors of N that are arranged in increasing numerical order.