Skill set for this assignment:
Problem 1 (25 points): Write a C program that prints the following three lines of text:
Problem 2 (25 points):
Write a C program that
prints a square, triangle and a diamond as shown:
****
****
****
*
**
***
****
*****
     *
   *   *
*         *
   *    *
     *
Problem
3 (25 points):
Write a C program that prompts the
user to enter one integer number. The program obtains the number from the user and then checks
if the input number is
divisible by 3 and prints an appropriate message.
For example if the input is 12, the output should be: 12 is divisible by
3,
and if the input is 85, the output should be: 85 is not divisible by 3.
Problem
4 (25 points):
Write a C program that prompts the
user to enter six integer numbers. The program obtains the numbers from
the user, then finds
and prints the sum and the product of the input numbers.