hi

being new to this forum, am new to c++ programming and my professor giving tough homework .
guy's need your help.r

our assigment is:

Repeat the problem collatz conjecture, 1.19.3, in a new direc-tory collatz1. Now your collatz procedure should compute the collatz sequence and store the results in an array. Write another procedure that takes the com-puted array and prints the collatz sequence. email collatz.h, collatz.cpp and collatztest.cpp. Also include screen shot of the program output as a pdf file.

Problem 1.19.9. Write a class called funnychar that outputs the following figure:
#
##
###
####
#####
######
#######
########
#########
##########

Use only for statements. You can use only
count < < '#'; as aprint statement
Use only while statements

Use only do while statements

Use only if statement and cannot have any loop statements like for, while and do while. Hint: Use goto statement.