Computer Programming Group Assignment
1. Write a program in C++ to read a positive integer number n and to generate the numbers
in the following form.
Enter a number: 5
Output: 5 4 3 2 1 0 1 2 3 4 5
Enter a number: 7
Output: 7 6 5 4 3 2 1 0 1 2 3 4 5 6 7
2. Write a program that accepts a decimal number from keyboard and display its binary
equivalent?
3. Write a program that accepts two numbers and find the GCF of the numbers.
4. Write a program in C++ to generate pyramid of numbers
5. Write a program by using two dimensional arrays that displays the square of the number
that accepts from the user.